FACT++  1.0
void DataLogger::RemoveOldestRunNumber ( )
private

removes the oldest run number, and close the relevant files.

Removes the oldest run number and closes the fits files that should be closed Also creates the fits grouping file

Definition at line 891 of file datalogger.cc.

References Debug, and str.

Referenced by StopRunLogging(), TrimOldRunNumbers(), and ~DataLogger().

892 {
893  if (fDebugIsOn)
894  {
895  ostringstream str;
896  str << "Removing run number " << fRunNumber.front().runNumber;
897  Debug(str);
898  }
899  //remove the entry
900  fRunNumber.pop_front();
901 }
int Debug(const std::string &str)
Definition: MessageImp.h:45
char str[80]
Definition: test_client.c:7
bool fDebugIsOn
configuration flags
Definition: datalogger.cc:315
list< RunNumberType > fRunNumber
run numbers
Definition: datalogger.cc:211

+ Here is the caller graph for this function: