FACT++  1.0
anonymous enum

The list of existing states specific to the DataLogger.

Enumerator
kSM_NightlyOpen 

Nightly file openned and writing.

kSM_WaitingRun 

waiting for the run number to open the run file

kSM_Logging 

both files openned and writing

kSM_BadFolder 

the folder specified for Nightly logging does not exist or has bad permissions

kSM_RunWriteError 

Denotes that an error occured while writing a run file (text or fits).

kSM_DailyWriteError 

Denots that an error occured while writing a daily file (text or fits).

Definition at line 183 of file datalogger.cc.

184  {
185  kSM_NightlyOpen = 20,
186  kSM_WaitingRun = 30,
187  kSM_Logging = 40,
188  kSM_BadFolder = 0x101,
189  kSM_RunWriteError = 0x103,
190  kSM_DailyWriteError = 0x103,
191  } localstates_t;
the folder specified for Nightly logging does not exist or has bad permissions
Definition: datalogger.cc:188
enum DataLogger::@10 localstates_t
The list of existing states specific to the DataLogger.
both files openned and writing
Definition: datalogger.cc:187
Denots that an error occured while writing a daily file (text or fits).
Definition: datalogger.cc:190
Denotes that an error occured while writing a run file (text or fits).
Definition: datalogger.cc:189
Nightly file openned and writing.
Definition: datalogger.cc:185
waiting for the run number to open the run file
Definition: datalogger.cc:186