File indexing completed on 2024-04-06 12:05:13
0001
0002 #ifndef DataFormats_SiStripCommon_ConstantsForRunType_H
0003 #define DataFormats_SiStripCommon_ConstantsForRunType_H
0004
0005 #include "DataFormats/SiStripCommon/interface/Constants.h"
0006
0007
0008
0009
0010
0011
0012
0013 namespace sistrip {
0014
0015
0016
0017 static const char unknownRunType_[] = "UnknownRunType";
0018 static const char undefinedRunType_[] = "UndefinedRunType";
0019
0020 static const char fastCablingRun_[] = "FastCabling";
0021 static const char fedCablingRun_[] = "FedCabling";
0022 static const char apvTimingRun_[] = "ApvTiming";
0023 static const char fedTimingRun_[] = "FedTiming";
0024 static const char optoScanRun_[] = "OptoScan";
0025 static const char vpspScanRun_[] = "VpspScan";
0026 static const char pedestalsRun_[] = "Pedestals";
0027 static const char pedsOnlyRun_[] = "PedsOnly";
0028 static const char noiseRun_[] = "Noise";
0029 static const char pedsFullNoiseRun_[] = "PedsFullNoise";
0030 static const char apvLatencyRun_[] = "ApvLatency";
0031 static const char fineDelayRun_[] = "FineDelay";
0032 static const char calibPeakRun_[] = "CalibrationPeak";
0033 static const char calibDeconRun_[] = "CalibrationDeco";
0034 static const char calibScanPeakRun_[] = "CalibrationScanPeak";
0035 static const char calibScanDeconRun_[] = "CalibrationScanDeco";
0036 static const char daqScopeModeRun_[] = "DaqScopeMode";
0037 static const char physicsRun_[] = "Physics";
0038
0039
0040
0041
0042
0043
0044
0045
0046
0047
0048
0049
0050
0051
0052
0053
0054
0055
0056
0057
0058
0059
0060
0061
0062
0063
0064
0065
0066
0067
0068
0069
0070 enum RunType {
0071 PHYSICS = 1,
0072 PEDESTALS = 2,
0073 CALIBRATION = 3,
0074 OPTO_SCAN = 4,
0075 APV_TIMING = 5,
0076 APV_LATENCY = 6,
0077 FINE_DELAY_PLL = 7,
0078 FINE_DELAY_TTC = 8,
0079 MULTI_MODE = 10,
0080 FED_TIMING = 12,
0081 FED_CABLING = 13,
0082 VPSP_SCAN = 14,
0083 DAQ_SCOPE_MODE = 15,
0084 QUITE_FAST_CABLING = 16,
0085 FINE_DELAY = 17,
0086 PHYSICS_ZS = 18,
0087 CALIBRATION_SCAN = 19,
0088 CALIBRATION_SCAN_DECO = 20,
0089 FAST_CABLING = 21,
0090 PEDS_ONLY = 22,
0091 NOISE = 23,
0092 PEDS_FULL_NOISE = 24,
0093 CALIBRATION_DECO = 33,
0094 UNKNOWN_RUN_TYPE = sistrip::unknown_,
0095 UNDEFINED_RUN_TYPE = sistrip::invalid_
0096 };
0097
0098 }
0099
0100 #endif