CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripEnumsAndStrings.cc
Go to the documentation of this file.
1 
3 
4 // -----------------------------------------------------------------------------
5 //
7  if ( view == sistrip::READOUT_VIEW ) { return sistrip::readoutView_; }
8  else if ( view == sistrip::CONTROL_VIEW ) { return sistrip::controlView_; }
9  else if ( view == sistrip::DETECTOR_VIEW ) { return sistrip::detectorView_; }
10  else if ( view == sistrip::UNDEFINED_VIEW ) { return sistrip::undefinedView_; }
11  else { return sistrip::unknownView_; }
12 }
13 
14 // -----------------------------------------------------------------------------
15 //
17  if ( dir.find( sistrip::readoutView_ ) != std::string::npos ) { return sistrip::READOUT_VIEW; }
18  else if ( dir.find( sistrip::controlView_ ) != std::string::npos ) { return sistrip::CONTROL_VIEW; }
19  else if ( dir.find( sistrip::detectorView_ ) != std::string::npos ) { return sistrip::DETECTOR_VIEW; }
20  else if ( dir.find( sistrip::undefinedView_ ) != std::string::npos ) { return sistrip::UNDEFINED_VIEW; }
21  else if ( dir.empty() ) { return sistrip::UNDEFINED_VIEW; }
22  else { return sistrip::UNKNOWN_VIEW; }
23 }
24 
25 // -----------------------------------------------------------------------------
26 //
28  if ( run_type == sistrip::FAST_CABLING ) { return sistrip::fastCablingRun_; }
29  else if ( run_type == sistrip::FED_CABLING ) { return sistrip::fedCablingRun_; }
30  else if ( run_type == sistrip::APV_TIMING ) { return sistrip::apvTimingRun_; }
31  else if ( run_type == sistrip::FED_TIMING ) { return sistrip::fedTimingRun_; }
32  else if ( run_type == sistrip::OPTO_SCAN ) { return sistrip::optoScanRun_; }
33  else if ( run_type == sistrip::VPSP_SCAN ) { return sistrip::vpspScanRun_; }
34  else if ( run_type == sistrip::PEDESTALS ) { return sistrip::pedestalsRun_; }
35  else if ( run_type == sistrip::PEDS_ONLY ) { return sistrip::pedsOnlyRun_; }
36  else if ( run_type == sistrip::NOISE ) { return sistrip::noiseRun_; }
37  else if ( run_type == sistrip::PEDS_FULL_NOISE ) { return sistrip::pedsFullNoiseRun_; }
38  else if ( run_type == sistrip::APV_LATENCY ){ return sistrip::apvLatencyRun_; }
39  else if ( run_type == sistrip::FINE_DELAY ){ return sistrip::fineDelayRun_; }
40  else if ( run_type == sistrip::CALIBRATION ){ return sistrip::calibPeakRun_; }
41  else if ( run_type == sistrip::CALIBRATION_DECO ){ return sistrip::calibDeconRun_; }
42  else if ( run_type == sistrip::CALIBRATION_SCAN ){ return sistrip::calibScanPeakRun_; }
43  else if ( run_type == sistrip::CALIBRATION_SCAN_DECO ){ return sistrip::calibScanDeconRun_; }
44  else if ( run_type == sistrip::DAQ_SCOPE_MODE ){ return sistrip::daqScopeModeRun_; }
45  else if ( run_type == sistrip::PHYSICS ){ return sistrip::physicsRun_; }
46  else if ( run_type == sistrip::UNDEFINED_RUN_TYPE ) { return sistrip::undefinedRunType_; }
47  else { return sistrip::unknownRunType_; }
48 }
49 
50 // -----------------------------------------------------------------------------
51 //
53  if ( run_type.find( sistrip::fastCablingRun_ ) != std::string::npos ) { return sistrip::FAST_CABLING; }
54  else if ( run_type.find( sistrip::fedCablingRun_ ) != std::string::npos ) { return sistrip::FED_CABLING; }
55  else if ( run_type.find( sistrip::apvTimingRun_ ) != std::string::npos ) { return sistrip::APV_TIMING; }
56  else if ( run_type.find( sistrip::fedTimingRun_ ) != std::string::npos ) { return sistrip::FED_TIMING; }
57  else if ( run_type.find( sistrip::optoScanRun_ ) != std::string::npos ) { return sistrip::OPTO_SCAN; }
58  else if ( run_type.find( sistrip::vpspScanRun_ ) != std::string::npos ) { return sistrip::VPSP_SCAN; }
59  else if ( run_type.find( sistrip::pedestalsRun_ ) != std::string::npos ) { return sistrip::PEDESTALS; }
60  else if ( run_type.find( sistrip::pedsOnlyRun_ ) != std::string::npos ) { return sistrip::PEDS_ONLY; }
61  else if ( run_type.find( sistrip::pedsFullNoiseRun_ ) != std::string::npos ) { return sistrip::PEDS_FULL_NOISE; } // needs to be before noise, otherwise name mismatch
62  else if ( run_type.find( sistrip::noiseRun_ ) != std::string::npos ) { return sistrip::NOISE; }
63  else if ( run_type.find( sistrip::fineDelayRun_ ) != std::string::npos ) { return sistrip::FINE_DELAY; }
64  else if ( run_type.find( sistrip::calibPeakRun_ ) != std::string::npos ) { return sistrip::CALIBRATION; }
65  else if ( run_type.find( sistrip::calibScanPeakRun_ ) != std::string::npos ) { return sistrip::CALIBRATION_SCAN; }
66  else if ( run_type.find( sistrip::calibDeconRun_ ) != std::string::npos ) { return sistrip::CALIBRATION_DECO; }
67  else if ( run_type.find( sistrip::calibScanDeconRun_ ) != std::string::npos ) { return sistrip::CALIBRATION_SCAN_DECO; }
68  else if ( run_type.find( sistrip::apvLatencyRun_ ) != std::string::npos ) { return sistrip::APV_LATENCY; }
69  else if ( run_type.find( sistrip::daqScopeModeRun_ ) != std::string::npos ) { return sistrip::DAQ_SCOPE_MODE; }
70  else if ( run_type.find( sistrip::physicsRun_ ) != std::string::npos ) { return sistrip::PHYSICS; }
71  else if ( run_type.find( sistrip::undefinedRunType_ ) != std::string::npos ) { return sistrip::UNDEFINED_RUN_TYPE; }
72  else if ( run_type.empty() ) { return sistrip::UNDEFINED_RUN_TYPE; }
73  else if ( run_type == "FAST_CABLING" ) { return sistrip::FAST_CABLING; }
74  else if ( run_type == "FED_CABLING" ) { return sistrip::FED_CABLING; }
75  else if ( run_type == "APV_TIMING" ) { return sistrip::APV_TIMING; }
76  else if ( run_type == "FED_TIMING" ) { return sistrip::FED_TIMING; }
77  else if ( run_type == "OPTO_SCAN" ) { return sistrip::OPTO_SCAN; }
78  else if ( run_type == "VPSP_SCAN" ) { return sistrip::VPSP_SCAN; }
79  else if ( run_type == "PEDESTALS" ) { return sistrip::PEDESTALS; }
80  else if ( run_type == "PEDS_FULL_NOISE" ) { return sistrip::PEDS_FULL_NOISE; }
81  else if ( run_type == "PEDS_ONLY" ) { return sistrip::PEDS_ONLY; }
82  else if ( run_type == "NOISE" ) { return sistrip::NOISE; }
83  else if ( run_type == "APV_LATENCY" ) { return sistrip::APV_LATENCY; }
84  else if ( run_type == "FINE_DELAY" ) { return sistrip::FINE_DELAY; }
85  else if ( run_type == "CALIBRATION" ) { return sistrip::CALIBRATION; }
86  else if ( run_type == "CALIBRATION_SCAN" ) { return sistrip::CALIBRATION_SCAN; }
87  else if ( run_type == "CALIBRATION_DECO" ) { return sistrip::CALIBRATION_DECO; }
88  else if ( run_type == "CALIBRATION_SCAN_DECO" ) { return sistrip::CALIBRATION_SCAN_DECO; }
89  else if ( run_type == "DAQ_SCOPE_MODE" ) { return sistrip::DAQ_SCOPE_MODE; }
90  else if ( run_type == "PHYSICS" ) { return sistrip::PHYSICS; }
91  else if ( run_type == "UNDEFINED" ) { return sistrip::UNDEFINED_RUN_TYPE; }
92  else { return sistrip::UNKNOWN_RUN_TYPE; }
93 }
94 
95 // -----------------------------------------------------------------------------
96 //
98  if ( run_type == 1 ) { return sistrip::PHYSICS; }
99  else if ( run_type == 2 ) { return sistrip::PEDESTALS; }
100  else if ( run_type == 3 ) { return sistrip::CALIBRATION; }
101  else if ( run_type == 4 ) { return sistrip::OPTO_SCAN; }
102  else if ( run_type == 5 ) { return sistrip::APV_TIMING; }
103  else if ( run_type == 6 ) { return sistrip::APV_LATENCY; }
104  else if ( run_type == 7 ) { return sistrip::FINE_DELAY_PLL; }
105  else if ( run_type == 8 ) { return sistrip::FINE_DELAY_TTC; }
106  else if ( run_type == 10 ) { return sistrip::MULTI_MODE; }
107  else if ( run_type == 11 ) { return sistrip::FED_CABLING; }
108  else if ( run_type == 12 ) { return sistrip::FED_TIMING; }
109  else if ( run_type == 13 ) { return sistrip::FED_CABLING; }
110  else if ( run_type == 14 ) { return sistrip::VPSP_SCAN; }
111  else if ( run_type == 15 ) { return sistrip::DAQ_SCOPE_MODE; }
112  else if ( run_type == 16 ) { return sistrip::QUITE_FAST_CABLING; }
113  else if ( run_type == 17 ) { return sistrip::FINE_DELAY; } //@@ layer
114  else if ( run_type == 18 ) { return sistrip::PHYSICS_ZS; }
115  else if ( run_type == 19 ) { return sistrip::CALIBRATION_SCAN; }
116  else if ( run_type == 20 ) { return sistrip::CALIBRATION_SCAN_DECO; }
117  else if ( run_type == 21 ) { return sistrip::FAST_CABLING; }
118  else if ( run_type == 22 ) { return sistrip::PEDS_ONLY; }
119  else if ( run_type == 23 ) { return sistrip::NOISE; }
120  else if ( run_type == 24 ) { return sistrip::PEDS_FULL_NOISE; }
121  else if ( run_type == 33 ) { return sistrip::CALIBRATION_DECO; }
122  else if ( run_type == sistrip::invalid_ ) { return sistrip::UNDEFINED_RUN_TYPE; }
123  else { return sistrip::UNKNOWN_RUN_TYPE; }
124 }
125 
126 // -----------------------------------------------------------------------------
127 //
129  if ( key_type == sistrip::FED_KEY ) { return sistrip::fedKey_; }
130  else if ( key_type == sistrip::FEC_KEY ) { return sistrip::fecKey_; }
131  else if ( key_type == sistrip::DET_KEY ) { return sistrip::detKey_; }
132  else if ( key_type == sistrip::UNDEFINED_KEY ) { return sistrip::undefinedKey_; }
133  else { return sistrip::unknownKey_; }
134 }
135 
136 // -----------------------------------------------------------------------------
137 //
139  if ( key_type.find ( sistrip::fedKey_) != std::string::npos ) { return sistrip::FED_KEY; }
140  else if ( key_type.find( sistrip::fecKey_) != std::string::npos ) { return sistrip::FEC_KEY; }
141  else if ( key_type.find( sistrip::detKey_) != std::string::npos ) { return sistrip::DET_KEY; }
142  else if ( key_type.find( sistrip::undefinedKey_) != std::string::npos ) { return sistrip::UNDEFINED_KEY; }
143  else if ( key_type.empty() ) { return sistrip::UNDEFINED_KEY; }
144  else { return sistrip::UNKNOWN_KEY; }
145 }
146 
147 // -----------------------------------------------------------------------------
148 //
150  // System
151  if ( granularity == sistrip::TRACKER ) { return sistrip::tracker_; }
152  else if ( granularity == sistrip::PARTITION ) { return sistrip::partition_; }
153  else if ( granularity == sistrip::TIB ) { return sistrip::tib_; }
154  else if ( granularity == sistrip::TOB ) { return sistrip::tob_; }
155  else if ( granularity == sistrip::TEC ) { return sistrip::tec_; }
156  // Sub-structure
157  else if ( granularity == sistrip::LAYER ) { return sistrip::layer_; }
158  else if ( granularity == sistrip::ROD ) { return sistrip::rod_; }
159  else if ( granularity == sistrip::STRING ) { return sistrip::string_; }
160  else if ( granularity == sistrip::DISK ) { return sistrip::disk_; }
161  else if ( granularity == sistrip::PETAL ) { return sistrip::petal_; }
162  else if ( granularity == sistrip::RING ) { return sistrip::ring_; }
163  // Module and below
164  else if ( granularity == sistrip::MODULE ) { return sistrip::module_; }
165  else if ( granularity == sistrip::LLD_CHAN ) { return sistrip::lldChan_; }
166  else if ( granularity == sistrip::APV ) { return sistrip::apv_; }
167  // Readout
168  else if ( granularity == sistrip::FED_SYSTEM ) { return sistrip::fedSystem_; }
169  else if ( granularity == sistrip::FE_DRIVER ) { return sistrip::feDriver_; }
170  else if ( granularity == sistrip::FE_UNIT ) { return sistrip::feUnit_; }
171  else if ( granularity == sistrip::FE_CHAN ) { return sistrip::feChan_; }
172  else if ( granularity == sistrip::FED_APV ) { return sistrip::fedApv_; }
173  else if ( granularity == sistrip::FED_CHANNEL ) { return sistrip::fedChannel_; }
174  // Control
175  else if ( granularity == sistrip::FEC_SYSTEM ) { return sistrip::fecSystem_; }
176  else if ( granularity == sistrip::FEC_CRATE ) { return sistrip::fecCrate_; }
177  else if ( granularity == sistrip::FEC_SLOT ) { return sistrip::fecSlot_; }
178  else if ( granularity == sistrip::FEC_RING ) { return sistrip::fecRing_; }
179  else if ( granularity == sistrip::CCU_ADDR ) { return sistrip::ccuAddr_; }
180  else if ( granularity == sistrip::CCU_CHAN ) { return sistrip::ccuChan_; }
181  // Unknown
182  else if ( granularity == sistrip::UNDEFINED_GRAN ) { return sistrip::undefinedGranularity_; }
183  else { return sistrip::unknownGranularity_; }
184 }
185 
186 // -----------------------------------------------------------------------------
187 //
189  // System
190  if ( granularity.find( sistrip::tracker_ ) != std::string::npos ) { return sistrip::TRACKER; }
191  else if ( granularity.find( sistrip::partition_ ) != std::string::npos ) { return sistrip::PARTITION; }
192  else if ( granularity.find( sistrip::tib_ ) != std::string::npos ) { return sistrip::TIB; }
193  else if ( granularity.find( sistrip::tob_ ) != std::string::npos ) { return sistrip::TOB; }
194  else if ( granularity.find( sistrip::tec_ ) != std::string::npos ) { return sistrip::TEC; }
195  // Readout
196  else if ( granularity.find( sistrip::fedSystem_ ) != std::string::npos ) { return sistrip::FED_SYSTEM; }
197  else if ( granularity.find( sistrip::feDriver_ ) != std::string::npos ) { return sistrip::FE_DRIVER; }
198  else if ( granularity.find( sistrip::feUnit_ ) != std::string::npos ) { return sistrip::FE_UNIT; }
199  else if ( granularity.find( sistrip::feChan_ ) != std::string::npos ) { return sistrip::FE_CHAN; }
200  else if ( granularity.find( sistrip::fedApv_ ) != std::string::npos ) { return sistrip::FED_APV; }
201  else if ( granularity.find( sistrip::fedChannel_ ) != std::string::npos ) { return sistrip::FED_CHANNEL; }
202  // Control
203  else if ( granularity.find( sistrip::fecSystem_ ) != std::string::npos ) { return sistrip::FEC_SYSTEM; }
204  else if ( granularity.find( sistrip::fecCrate_ ) != std::string::npos ) { return sistrip::FEC_CRATE; }
205  else if ( granularity.find( sistrip::fecSlot_ ) != std::string::npos ) { return sistrip::FEC_SLOT; }
206  else if ( granularity.find( sistrip::fecRing_ ) != std::string::npos ) { return sistrip::FEC_RING; }
207  else if ( granularity.find( sistrip::ccuAddr_ ) != std::string::npos ) { return sistrip::CCU_ADDR; }
208  else if ( granularity.find( sistrip::ccuChan_ ) != std::string::npos ) { return sistrip::CCU_CHAN; }
209  // Sub-structure
210  else if ( granularity.find( sistrip::layer_ ) != std::string::npos ) { return sistrip::LAYER; }
211  else if ( granularity.find( sistrip::rod_ ) != std::string::npos ) { return sistrip::ROD; }
212  else if ( granularity.find( sistrip::string_ ) != std::string::npos ) { return sistrip::STRING; }
213  else if ( granularity.find( sistrip::disk_ ) != std::string::npos ) { return sistrip::DISK; }
214  else if ( granularity.find( sistrip::petal_ ) != std::string::npos ) { return sistrip::PETAL; }
215  else if ( granularity.find( sistrip::ring_ ) != std::string::npos ) { return sistrip::RING; }
216  // Module and below
217  else if ( granularity.find( sistrip::module_ ) != std::string::npos ) { return sistrip::MODULE; }
218  else if ( granularity.find( sistrip::lldChan_ ) != std::string::npos ) { return sistrip::LLD_CHAN; }
219  else if ( granularity.find( sistrip::apv_ ) != std::string::npos ) { return sistrip::APV; } //@@ bug if before "FedApv"!
220  // Unknown
221  else if ( granularity.find( sistrip::undefinedGranularity_ ) != std::string::npos ) { return sistrip::UNDEFINED_GRAN; }
222  else if ( granularity.empty() ) { return sistrip::UNDEFINED_GRAN; }
223  else { return sistrip::UNKNOWN_GRAN; }
224 }
225 
226 // -----------------------------------------------------------------------------
227 //
229  if ( mode == sistrip::APV_PEAK_MODE ) { return sistrip::apvPeakMode_; }
230  else if ( mode == sistrip::APV_DECON_MODE ) { return sistrip::apvDeconMode_; }
231  else if ( mode == sistrip::APV_MULTI_MODE ) { return sistrip::apvMultiMode_; }
233  else { return sistrip::unknownApvReadoutMode_; }
234 }
235 
236 // -----------------------------------------------------------------------------
237 //
239  if ( mode.find( sistrip::apvPeakMode_ ) != std::string::npos ) { return sistrip::APV_PEAK_MODE; }
240  else if ( mode.find( sistrip::apvDeconMode_ ) != std::string::npos ) { return sistrip::APV_DECON_MODE; }
241  else if ( mode.find( sistrip::apvMultiMode_ ) != std::string::npos ) { return sistrip::APV_MULTI_MODE; }
242  else if ( mode.find( sistrip::undefinedApvReadoutMode_ ) != std::string::npos ) { return sistrip::UNDEFINED_APV_READOUT_MODE; }
243  else if ( mode.empty() ) { return sistrip::UNDEFINED_APV_READOUT_MODE; }
244  else { return sistrip::UNKNOWN_APV_READOUT_MODE; }
245 }
246 
247 // -----------------------------------------------------------------------------
248 //
250  if ( mode == sistrip::FED_SCOPE_MODE ) { return sistrip::fedScopeMode_; }
251  else if ( mode == sistrip::FED_VIRGIN_RAW ) { return sistrip::fedVirginRaw_; }
252  else if ( mode == sistrip::FED_PROC_RAW ) { return sistrip::fedProcRaw_; }
253  else if ( mode == sistrip::FED_ZERO_SUPPR ) { return sistrip::fedZeroSuppr_; }
254  else if ( mode == sistrip::FED_ZERO_SUPPR_LITE ) { return sistrip::fedZeroSupprLite_; }
256  else { return sistrip::unknownFedReadoutMode_; }
257 }
258 
259 // -----------------------------------------------------------------------------
260 //
262  if ( mode.find( sistrip::fedScopeMode_ ) != std::string::npos ) { return sistrip::FED_SCOPE_MODE; }
263  else if ( mode.find( sistrip::fedVirginRaw_ ) != std::string::npos ) { return sistrip::FED_VIRGIN_RAW; }
264  else if ( mode.find( sistrip::fedProcRaw_ ) != std::string::npos ) { return sistrip::FED_PROC_RAW; }
265  else if ( mode.find( sistrip::fedZeroSuppr_ ) != std::string::npos ) { return sistrip::FED_ZERO_SUPPR; }
266  else if ( mode.find( sistrip::fedZeroSupprLite_ ) != std::string::npos ) { return sistrip::FED_ZERO_SUPPR_LITE; }
267  else if ( mode.find( sistrip::undefinedFedReadoutMode_ ) != std::string::npos ) { return sistrip::UNDEFINED_FED_READOUT_MODE; }
268  else if ( mode.empty() ) { return sistrip::UNDEFINED_FED_READOUT_MODE; }
269  else { return sistrip::UNKNOWN_FED_READOUT_MODE; }
270 }
271 
272 // -----------------------------------------------------------------------------
273 //
275  if ( type == sistrip::EXPERT_HISTO ) { return sistrip::expertHisto_; }
276  else if ( type == sistrip::SUMMARY_HISTO ) { return sistrip::summaryHisto_; }
277  else if ( type == sistrip::UNDEFINED_HISTO_TYPE ) { return sistrip::undefinedHistoType_; }
278  else { return sistrip::unknownHistoType_; }
279 }
280 
281 // -----------------------------------------------------------------------------
282 //
284  if ( type.find( sistrip::expertHisto_ ) != std::string::npos ) { return sistrip::EXPERT_HISTO; }
285  else if ( type.find( sistrip::summaryHisto_ ) != std::string::npos ) { return sistrip::SUMMARY_HISTO; }
286  else if ( type.find( sistrip::undefinedHistoType_ ) != std::string::npos ) { return sistrip::UNDEFINED_HISTO_TYPE; }
287  else if ( type.empty() ) { return sistrip::UNDEFINED_HISTO_TYPE; }
288  else { return sistrip::UNKNOWN_HISTO_TYPE; }
289 }
290 
291 // -----------------------------------------------------------------------------
292 //
294 
295  // fed cabling
296  if ( mon == sistrip::FED_CABLING_FED_ID ) { return sistrip::fedCablingFedId_; }
297  else if ( mon == sistrip::FED_CABLING_FED_CH ) { return sistrip::fedCablingFedCh_; }
298  else if ( mon == sistrip::FED_CABLING_ADC_LEVEL ) { return sistrip::fedCablingAdcLevel_; }
299 
300  // fast fed cabling
301  else if ( mon == sistrip::FAST_CABLING_DCU_ID ) { return sistrip::fastCablingDcuId_; }
302  else if ( mon == sistrip::FAST_CABLING_LLD_CH ) { return sistrip::fastCablingLldCh_; }
304  else if ( mon == sistrip::FAST_CABLING_HIGH_RMS ) { return sistrip::fastCablingHighRms_; }
306  else if ( mon == sistrip::FAST_CABLING_LOW_RMS ) { return sistrip::fastCablingLowRms_; }
307  else if ( mon == sistrip::FAST_CABLING_MAX ) { return sistrip::fastCablingMax_; }
308  else if ( mon == sistrip::FAST_CABLING_MIN ) { return sistrip::fastCablingMin_; }
310 
311  // apv timing
312  else if ( mon == sistrip::APV_TIMING_TIME ) { return sistrip::apvTimingTime_; }
313  else if ( mon == sistrip::APV_TIMING_MAX_TIME ) { return sistrip::apvTimingMax_; }
314  else if ( mon == sistrip::APV_TIMING_DELAY ) { return sistrip::apvTimingDelay_; }
315  else if ( mon == sistrip::APV_TIMING_ERROR ) { return sistrip::apvTimingError_; }
316  else if ( mon == sistrip::APV_TIMING_BASE ) { return sistrip::apvTimingBase_; }
317  else if ( mon == sistrip::APV_TIMING_PEAK ) { return sistrip::apvTimingPeak_; }
318  else if ( mon == sistrip::APV_TIMING_HEIGHT ) { return sistrip::apvTimingHeight_; }
319 
320  // fed timing
321  else if ( mon == sistrip::FED_TIMING_TIME ) { return sistrip::fedTimingTime_; }
322  else if ( mon == sistrip::FED_TIMING_MAX_TIME ) { return sistrip::fedTimingMax_; }
323  else if ( mon == sistrip::FED_TIMING_DELAY ) { return sistrip::fedTimingDelay_; }
324  else if ( mon == sistrip::FED_TIMING_ERROR ) { return sistrip::fedTimingError_; }
325  else if ( mon == sistrip::FED_TIMING_BASE ) { return sistrip::fedTimingBase_; }
326  else if ( mon == sistrip::FED_TIMING_PEAK ) { return sistrip::fedTimingPeak_; }
327  else if ( mon == sistrip::FED_TIMING_HEIGHT ) { return sistrip::fedTimingHeight_; }
328 
329  // opto scan
332  else if ( mon == sistrip::OPTO_SCAN_MEASURED_GAIN ) { return sistrip::optoScanMeasGain_; }
334  else if ( mon == sistrip::OPTO_SCAN_LINK_NOISE ) { return sistrip::optoScanLinkNoise_; }
337  else if ( mon == sistrip::OPTO_SCAN_TICK_HEIGHT ) { return sistrip::optoScanTickHeight_; }
338 
339  // vpsp scan
340  else if ( mon == sistrip::VPSP_SCAN_APV_SETTINGS ) { return sistrip::vpspScanBothApvs_; }
341  else if ( mon == sistrip::VPSP_SCAN_APV0_SETTING ) { return sistrip::vpspScanApv0_; }
342  else if ( mon == sistrip::VPSP_SCAN_APV1_SETTING ) { return sistrip::vpspScanApv1_; }
343  else if ( mon == sistrip::VPSP_SCAN_ADC_LEVEL ) { return sistrip::vpspScanAdcLevel_; }
345  else if ( mon == sistrip::VPSP_SCAN_DIGITAL_LOW ) { return sistrip::vpspScanDigitalLow_; }
346 
347  // pedestals / noise
348  else if ( mon == sistrip::PEDESTALS_ALL_STRIPS ) { return sistrip::pedestalsAllStrips_; }
349  else if ( mon == sistrip::PEDESTALS_MEAN ) { return sistrip::pedestalsMean_; }
350  else if ( mon == sistrip::PEDESTALS_SPREAD ) { return sistrip::pedestalsSpread_; }
351  else if ( mon == sistrip::PEDESTALS_MAX ) { return sistrip::pedestalsMax_; }
352  else if ( mon == sistrip::PEDESTALS_MIN ) { return sistrip::pedestalsMin_; }
353  else if ( mon == sistrip::NOISE_ALL_STRIPS ) { return sistrip::noiseAllStrips_; }
354  else if ( mon == sistrip::NOISE_MEAN ) { return sistrip::noiseMean_; }
355  else if ( mon == sistrip::NOISE_SPREAD ) { return sistrip::noiseSpread_; }
356  else if ( mon == sistrip::NOISE_MAX ) { return sistrip::noiseMax_; }
357  else if ( mon == sistrip::NOISE_MIN ) { return sistrip::noiseMin_; }
358  else if ( mon == sistrip::NUM_OF_DEAD ) { return sistrip::numOfDead_; }
359  else if ( mon == sistrip::NUM_OF_NOISY ) { return sistrip::numOfNoisy_; }
360  else if ( mon == sistrip::NOISE_GAUS_ALL_STRIPS ) { return sistrip::noiseGausAllStrips_; }
361  else if ( mon == sistrip::NOISE_KS_ALL_STRIPS ) { return sistrip::noiseKSAllStrips_; }
362  else if ( mon == sistrip::NOISE_CHI2_ALL_STRIPS ) { return sistrip::noiseChi2AllStrips_; }
364  else if ( mon == sistrip::NOISE_RMS_ALL_STRIPS) { return sistrip::noiseRMSAllStrips_; }
365  else if ( mon == sistrip::NOISE_SIGNIF_ALL_STRIPS ) { return sistrip::noiseSignif_; }
366 
367  // fine delay
368  else if ( mon == sistrip::FINE_DELAY_POS) { return sistrip::fineDelayPos_; }
369  else if ( mon == sistrip::FINE_DELAY_ERROR) { return sistrip::fineDelayErr_; }
370 
371  // calibration
373  else if ( mon == sistrip::CALIBRATION_TAIL) { return sistrip::calibrationTail_; }
377  else if ( mon == sistrip::CALIBRATION_CHI2) { return sistrip::calibrationChi2_; }
385  else if ( mon == sistrip::CALIBRATION_TAIL_MIN) { return sistrip::calibrationTailMin_; }
389  else if ( mon == sistrip::CALIBRATION_CHI2_MIN) { return sistrip::calibrationChi2Min_; }
391  else if ( mon == sistrip::CALIBRATION_TAIL_MAX) { return sistrip::calibrationTailMax_; }
395  else if ( mon == sistrip::CALIBRATION_CHI2_MAX) { return sistrip::calibrationChi2Max_; }
396 
397  // scope mode
399 
400  // unknown
402  else { return sistrip::unknownMonitorable_; }
403 
404 }
405 
406 // -----------------------------------------------------------------------------
407 //
409 
410  // fed cabling
411  if ( mon.find( sistrip::fedCablingFedId_ ) != std::string::npos ) { return sistrip::FED_CABLING_FED_ID; }
412  else if ( mon.find( sistrip::fedCablingFedCh_ ) != std::string::npos ) { return sistrip::FED_CABLING_FED_CH; }
413  else if ( mon.find( sistrip::fedCablingAdcLevel_ ) != std::string::npos ) { return sistrip::FED_CABLING_ADC_LEVEL; }
414 
415  // fed cabling
416  else if ( mon.find( sistrip::fastCablingDcuId_ ) != std::string::npos ) { return sistrip::FAST_CABLING_DCU_ID; }
417  else if ( mon.find( sistrip::fastCablingLldCh_ ) != std::string::npos ) { return sistrip::FAST_CABLING_LLD_CH; }
418  else if ( mon.find( sistrip::fastCablingHighLevel_ ) != std::string::npos ) { return sistrip::FAST_CABLING_HIGH_LEVEL; }
419  else if ( mon.find( sistrip::fastCablingHighRms_ ) != std::string::npos ) { return sistrip::FAST_CABLING_HIGH_RMS; }
420  else if ( mon.find( sistrip::fastCablingLowLevel_ ) != std::string::npos ) { return sistrip::FAST_CABLING_LOW_LEVEL; }
421  else if ( mon.find( sistrip::fastCablingLowRms_ ) != std::string::npos ) { return sistrip::FAST_CABLING_LOW_RMS; }
422  else if ( mon.find( sistrip::fastCablingMax_ ) != std::string::npos ) { return sistrip::FAST_CABLING_MAX; }
423  else if ( mon.find( sistrip::fastCablingMin_ ) != std::string::npos ) { return sistrip::FAST_CABLING_MIN; }
424  else if ( mon.find( sistrip::fastCablingConnsPerFed_ ) != std::string::npos ) { return sistrip::FAST_CABLING_CONNS_PER_FED; }
425 
426  // apv timing
427  else if ( mon.find( sistrip::apvTimingTime_ ) != std::string::npos ) { return sistrip::APV_TIMING_TIME; }
428  else if ( mon.find( sistrip::apvTimingMax_ ) != std::string::npos ) { return sistrip::APV_TIMING_MAX_TIME; }
429  else if ( mon.find( sistrip::apvTimingDelay_ ) != std::string::npos ) { return sistrip::APV_TIMING_DELAY; }
430  else if ( mon.find( sistrip::apvTimingError_ ) != std::string::npos ) { return sistrip::APV_TIMING_ERROR; }
431  else if ( mon.find( sistrip::apvTimingBase_ ) != std::string::npos ) { return sistrip::APV_TIMING_BASE; }
432  else if ( mon.find( sistrip::apvTimingPeak_ ) != std::string::npos ) { return sistrip::APV_TIMING_PEAK; }
433  else if ( mon.find( sistrip::apvTimingHeight_ ) != std::string::npos ) { return sistrip::APV_TIMING_HEIGHT; }
434 
435  // fed timing
436  else if ( mon.find( sistrip::fedTimingTime_ ) != std::string::npos ) { return sistrip::FED_TIMING_TIME; }
437  else if ( mon.find( sistrip::fedTimingMax_ ) != std::string::npos ) { return sistrip::FED_TIMING_MAX_TIME; }
438  else if ( mon.find( sistrip::fedTimingDelay_ ) != std::string::npos ) { return sistrip::FED_TIMING_DELAY; }
439  else if ( mon.find( sistrip::fedTimingError_ ) != std::string::npos ) { return sistrip::FED_TIMING_ERROR; }
440  else if ( mon.find( sistrip::fedTimingBase_ ) != std::string::npos ) { return sistrip::FED_TIMING_BASE; }
441  else if ( mon.find( sistrip::fedTimingPeak_ ) != std::string::npos ) { return sistrip::FED_TIMING_PEAK; }
442  else if ( mon.find( sistrip::fedTimingHeight_ ) != std::string::npos ) { return sistrip::FED_TIMING_HEIGHT; }
443 
444  // opto scan
445  else if ( mon.find( sistrip::optoScanLldGain_ ) != std::string::npos ) { return sistrip::OPTO_SCAN_LLD_GAIN_SETTING; }
446  else if ( mon.find( sistrip::optoScanLldBias_ ) != std::string::npos ) { return sistrip::OPTO_SCAN_LLD_BIAS_SETTING; }
447  else if ( mon.find( sistrip::optoScanMeasGain_ ) != std::string::npos ) { return sistrip::OPTO_SCAN_MEASURED_GAIN; }
448  else if ( mon.find( sistrip::optoScanZeroLight_ ) != std::string::npos ) { return sistrip::OPTO_SCAN_ZERO_LIGHT_LEVEL; }
449  else if ( mon.find( sistrip::optoScanLinkNoise_ ) != std::string::npos ) { return sistrip::OPTO_SCAN_LINK_NOISE; }
450  else if ( mon.find( sistrip::optoScanBaseLiftOff_ ) != std::string::npos ) { return sistrip::OPTO_SCAN_BASELINE_LIFT_OFF; }
451  else if ( mon.find( sistrip::optoScanLaserThresh_ ) != std::string::npos ) { return sistrip::OPTO_SCAN_LASER_THRESHOLD; }
452  else if ( mon.find( sistrip::optoScanTickHeight_ ) != std::string::npos ) { return sistrip::OPTO_SCAN_TICK_HEIGHT; }
453 
454  // vpsp scan
455  else if ( mon.find( sistrip::vpspScanBothApvs_ ) != std::string::npos ) { return sistrip::VPSP_SCAN_APV_SETTINGS; }
456  else if ( mon.find( sistrip::vpspScanApv0_ ) != std::string::npos ) { return sistrip::VPSP_SCAN_APV0_SETTING; }
457  else if ( mon.find( sistrip::vpspScanApv1_ ) != std::string::npos ) { return sistrip::VPSP_SCAN_APV1_SETTING; }
458  else if ( mon.find( sistrip::vpspScanAdcLevel_ ) != std::string::npos ) { return sistrip::VPSP_SCAN_ADC_LEVEL; }
459  else if ( mon.find( sistrip::vpspScanDigitalHigh_ ) != std::string::npos ) { return sistrip::VPSP_SCAN_DIGITAL_HIGH; }
460  else if ( mon.find( sistrip::vpspScanDigitalLow_ ) != std::string::npos ) { return sistrip::VPSP_SCAN_DIGITAL_LOW; }
461 
462  // pedestals / noise
463  else if ( mon.find( sistrip::pedestalsAllStrips_ ) != std::string::npos ) { return sistrip::PEDESTALS_ALL_STRIPS; }
464  else if ( mon.find( sistrip::pedestalsMean_ ) != std::string::npos ) { return sistrip::PEDESTALS_MEAN; }
465  else if ( mon.find( sistrip::pedestalsSpread_ ) != std::string::npos ) { return sistrip::PEDESTALS_SPREAD; }
466  else if ( mon.find( sistrip::pedestalsMax_ ) != std::string::npos ) { return sistrip::PEDESTALS_MAX; }
467  else if ( mon.find( sistrip::pedestalsMin_ ) != std::string::npos ) { return sistrip::PEDESTALS_MIN; }
468 
469  // noiseKS must come before the more general noiseAllStrips, since it contains that string
470  else if ( mon.find( sistrip::noiseGausAllStrips_ ) != std::string::npos ) { return sistrip::NOISE_GAUS_ALL_STRIPS; }
471  else if ( mon.find( sistrip::noiseKSAllStrips_ ) != std::string::npos ) { return sistrip::NOISE_KS_ALL_STRIPS; }
472  else if ( mon.find( sistrip::noiseChi2AllStrips_ ) != std::string::npos ) { return sistrip::NOISE_CHI2_ALL_STRIPS; }
473  else if ( mon.find( sistrip::noiseBin84AllStrips_ ) != std::string::npos ) { return sistrip::NOISE_BIN_84_ALL_STRIPS;}
474  else if ( mon.find( sistrip::noiseRMSAllStrips_ ) != std::string::npos ) { return sistrip::NOISE_RMS_ALL_STRIPS;}
475  else if ( mon.find( sistrip::noiseSignif_ ) != std::string::npos ) { return sistrip::NOISE_SIGNIF_ALL_STRIPS; }
476  else if ( mon.find( sistrip::noiseAllStrips_ ) != std::string::npos ) { return sistrip::NOISE_ALL_STRIPS; }
477  else if ( mon.find( sistrip::noiseMean_ ) != std::string::npos ) { return sistrip::NOISE_MEAN; }
478  else if ( mon.find( sistrip::noiseSpread_ ) != std::string::npos ) { return sistrip::NOISE_SPREAD; }
479  else if ( mon.find( sistrip::noiseMax_ ) != std::string::npos ) { return sistrip::NOISE_MAX; }
480  else if ( mon.find( sistrip::noiseMin_ ) != std::string::npos ) { return sistrip::NOISE_MIN; }
481  else if ( mon.find( sistrip::numOfDead_ ) != std::string::npos ) { return sistrip::NUM_OF_DEAD; }
482  else if ( mon.find( sistrip::numOfNoisy_ ) != std::string::npos ) { return sistrip::NUM_OF_NOISY; }
483 
484  // fine delay
485  else if ( mon.find( sistrip::fineDelayPos_ ) != std::string::npos ) { return sistrip::FINE_DELAY_POS; }
486  else if ( mon.find( sistrip::fineDelayErr_ ) != std::string::npos ) { return sistrip::FINE_DELAY_ERROR; }
487 
488  // calibration
489  else if ( mon.find( sistrip::calibrationAmplitudeAS_ ) != std::string::npos ) { return sistrip::CALIBRATION_AMPLITUDE_ALLSTRIPS; }
490  else if ( mon.find( sistrip::calibrationTailAS_ ) != std::string::npos ) { return sistrip::CALIBRATION_TAIL_ALLSTRIPS; }
491  else if ( mon.find( sistrip::calibrationRiseTimeAS_ ) != std::string::npos ) { return sistrip::CALIBRATION_RISETIME_ALLSTRIPS; }
492  else if ( mon.find( sistrip::calibrationTimeConstantAS_ ) != std::string::npos ) { return sistrip::CALIBRATION_TIMECONSTANT_ALLSTRIPS; }
493  else if ( mon.find( sistrip::calibrationSmearingAS_ ) != std::string::npos ) { return sistrip::CALIBRATION_SMEARING_ALLSTRIPS; }
494  else if ( mon.find( sistrip::calibrationChi2AS_ ) != std::string::npos ) { return sistrip::CALIBRATION_CHI2_ALLSTRIPS; }
495  else if ( mon.find( sistrip::calibrationAmplitudeMin_ ) != std::string::npos ) { return sistrip::CALIBRATION_AMPLITUDE_MIN; }
496  else if ( mon.find( sistrip::calibrationTailMin_ ) != std::string::npos ) { return sistrip::CALIBRATION_TAIL_MIN; }
497  else if ( mon.find( sistrip::calibrationRiseTimeMin_ ) != std::string::npos ) { return sistrip::CALIBRATION_RISETIME_MIN; }
498  else if ( mon.find( sistrip::calibrationTimeConstantMin_ ) != std::string::npos ) { return sistrip::CALIBRATION_TIMECONSTANT_MIN; }
499  else if ( mon.find( sistrip::calibrationSmearingMin_ ) != std::string::npos ) { return sistrip::CALIBRATION_SMEARING_MIN; }
500  else if ( mon.find( sistrip::calibrationChi2Min_ ) != std::string::npos ) { return sistrip::CALIBRATION_CHI2_MIN; }
501  else if ( mon.find( sistrip::calibrationAmplitudeMax_ ) != std::string::npos ) { return sistrip::CALIBRATION_AMPLITUDE_MAX; }
502  else if ( mon.find( sistrip::calibrationTailMax_ ) != std::string::npos ) { return sistrip::CALIBRATION_TAIL_MAX; }
503  else if ( mon.find( sistrip::calibrationRiseTimeMax_ ) != std::string::npos ) { return sistrip::CALIBRATION_RISETIME_MAX; }
504  else if ( mon.find( sistrip::calibrationTimeConstantMax_ ) != std::string::npos ) { return sistrip::CALIBRATION_TIMECONSTANT_MAX; }
505  else if ( mon.find( sistrip::calibrationSmearingMax_ ) != std::string::npos ) { return sistrip::CALIBRATION_SMEARING_MAX; }
506  else if ( mon.find( sistrip::calibrationChi2Max_ ) != std::string::npos ) { return sistrip::CALIBRATION_CHI2_MAX; }
507  else if ( mon.find( sistrip::calibrationAmplitude_ ) != std::string::npos ) { return sistrip::CALIBRATION_AMPLITUDE; }
508  else if ( mon.find( sistrip::calibrationTail_ ) != std::string::npos ) { return sistrip::CALIBRATION_TAIL; }
509  else if ( mon.find( sistrip::calibrationRiseTime_ ) != std::string::npos ) { return sistrip::CALIBRATION_RISETIME; }
510  else if ( mon.find( sistrip::calibrationTimeConstant_ ) != std::string::npos ) { return sistrip::CALIBRATION_TIMECONSTANT; }
511  else if ( mon.find( sistrip::calibrationSmearing_ ) != std::string::npos ) { return sistrip::CALIBRATION_SMEARING; }
512  else if ( mon.find( sistrip::calibrationChi2_ ) != std::string::npos ) { return sistrip::CALIBRATION_CHI2; }
513 
514  // scope mode
515  else if ( mon.find( sistrip::daqScopeModeMeanSignal_ ) != std::string::npos ) { return sistrip::DAQ_SCOPE_MODE_MEAN_SIGNAL; }
516 
517  // unknown
518  else if ( mon.find( sistrip::undefinedMonitorable_ ) != std::string::npos ) { return sistrip::UNDEFINED_MONITORABLE; }
519  else if ( mon.empty() ) { return sistrip::UNDEFINED_MONITORABLE; }
520  else { return sistrip::UNKNOWN_MONITORABLE; }
521 
522 }
523 
524 // -----------------------------------------------------------------------------
525 //
527  if ( type == sistrip::HISTO_1D ) { return sistrip::histo1d_; }
528  else if ( type == sistrip::HISTO_2D_SUM ) { return sistrip::histo2dSum_; }
529  else if ( type == sistrip::HISTO_2D_SCATTER ) { return sistrip::histo2dScatter_; }
530  else if ( type == sistrip::PROFILE_1D ) { return sistrip::profile1D_; }
532  else { return sistrip::unknownPresentation_; }
533 }
534 
535 // -----------------------------------------------------------------------------
536 //
538  if ( type.find( sistrip::histo1d_ ) != std::string::npos ) { return sistrip::HISTO_1D; }
539  else if ( type.find( sistrip::histo2dSum_ ) != std::string::npos ) { return sistrip::HISTO_2D_SUM; }
540  else if ( type.find( sistrip::histo2dScatter_ ) != std::string::npos ) { return sistrip::HISTO_2D_SCATTER; }
541  else if ( type.find( sistrip::profile1D_ ) != std::string::npos ) { return sistrip::PROFILE_1D; }
542  else if ( type.find( sistrip::undefinedPresentation_ ) != std::string::npos ) { return sistrip::UNDEFINED_PRESENTATION; }
543  else if ( type.empty() ) { return sistrip::UNDEFINED_PRESENTATION; }
544  else { return sistrip::UNKNOWN_PRESENTATION; }
545 }
546 
547 // -----------------------------------------------------------------------------
548 //
550  if ( source == sistrip::CABLING_FROM_CONNS ) { return sistrip::cablingFromConns_; }
551  else if ( source == sistrip::CABLING_FROM_DEVICES ) { return sistrip::cablingFromDevices_; }
552  else if ( source == sistrip::CABLING_FROM_DETIDS ) { return sistrip::cablingFromDetIds_; }
554  else { return sistrip::unknownCablingSource_; }
555 }
556 
557 // -----------------------------------------------------------------------------
558 //
560  if ( source.find( sistrip::cablingFromConns_ ) != std::string::npos ) { return sistrip::CABLING_FROM_CONNS; }
561  else if ( source.find( sistrip::cablingFromDevices_ ) != std::string::npos ) { return sistrip::CABLING_FROM_DEVICES; }
562  else if ( source.find( sistrip::cablingFromDetIds_ ) != std::string::npos ) { return sistrip::CABLING_FROM_DETIDS; }
563  else if ( source.find( sistrip::undefinedCablingSource_ ) != std::string::npos ) { return sistrip::UNDEFINED_CABLING_SOURCE; }
564  else if ( source.empty() ) { return sistrip::UNDEFINED_CABLING_SOURCE; }
565  else if ( source == "CONNECTIONS" ) { return sistrip::CABLING_FROM_CONNS; }
566  else if ( source == "DEVICES" ) { return sistrip::CABLING_FROM_DEVICES; }
567  else if ( source == "DETIDS" ) { return sistrip::CABLING_FROM_DETIDS; }
568  else if ( source == "UNDEFINED" ) { return sistrip::UNDEFINED_CABLING_SOURCE; }
569  else { return sistrip::UNKNOWN_CABLING_SOURCE; }
570 }
571 
static const char unknownView_[]
static const char module_[]
type
Definition: HCALResponse.h:21
static const char optoScanLinkNoise_[]
static const char calibrationAmplitude_[]
static const char fastCablingDcuId_[]
static const char feDriver_[]
static std::string monitorable(const sistrip::Monitorable &)
static const char fastCablingRun_[]
static const char optoScanLldGain_[]
static const char calibrationAmplitudeAS_[]
static const char layer_[]
static const char tec_[]
static const char calibrationTimeConstantMax_[]
static const char undefinedKey_[]
static const char vpspScanRun_[]
static const char apvDeconMode_[]
static const char tracker_[]
static const char summaryHisto_[]
static const char calibrationRiseTimeMax_[]
static const char noiseKSAllStrips_[]
static const char fedTimingError_[]
static const char calibScanPeakRun_[]
static const char tob_[]
static const char unknownCablingSource_[]
static const char noiseMean_[]
static const char unknownKey_[]
static const char fastCablingMin_[]
static const char numOfDead_[]
static const char calibScanDeconRun_[]
static const char unknownHistoType_[]
static const char calibrationTimeConstantMin_[]
static const char fedCablingAdcLevel_[]
static const char calibrationAmplitudeMax_[]
static const char unknownPresentation_[]
static const char apvTimingHeight_[]
static const char histo2dScatter_[]
static const char profile1D_[]
static const char physicsRun_[]
static const char apvTimingMax_[]
static const char optoScanTickHeight_[]
static const char fedKey_[]
static std::string granularity(const sistrip::Granularity &)
static const char fineDelayPos_[]
static const char noiseMax_[]
static const char calibrationSmearingAS_[]
static const char rod_[]
static const char noiseMin_[]
static const char fedZeroSupprLite_[]
static const char calibrationTimeConstantAS_[]
static const char optoScanMeasGain_[]
static const char fineDelayRun_[]
static const char pedestalsMean_[]
static const char detectorView_[]
static const char fedTimingHeight_[]
static const char string_[]
static const char histo2dSum_[]
static const char fecSlot_[]
static const char undefinedView_[]
static const char ccuChan_[]
static const char ccuAddr_[]
static const char apvTimingRun_[]
static const char fedCablingFedId_[]
static const char fedCablingFedCh_[]
static std::string view(const sistrip::View &)
static std::string runType(const sistrip::RunType &)
static const char optoScanLldBias_[]
static const char pedsOnlyRun_[]
static const char lldChan_[]
static const char undefinedGranularity_[]
static const char calibrationAmplitudeMin_[]
static std::string apvReadoutMode(const sistrip::ApvReadoutMode &)
static const char apvTimingDelay_[]
static const char pedestalsRun_[]
static const char calibrationSmearing_[]
static const char undefinedCablingSource_[]
static const char noiseRun_[]
static const char partition_[]
static const char numOfNoisy_[]
static const char calibrationTailMin_[]
static const char vpspScanDigitalHigh_[]
static const char fedApv_[]
static const char pedsFullNoiseRun_[]
static const char expertHisto_[]
static const char undefinedMonitorable_[]
static const char undefinedPresentation_[]
static const char controlView_[]
static const char fastCablingLowRms_[]
static const char optoScanBaseLiftOff_[]
static const char fedProcRaw_[]
static const char calibrationTailMax_[]
static const char fastCablingLldCh_[]
static const char optoScanZeroLight_[]
static const char vpspScanDigitalLow_[]
static const char unknownGranularity_[]
static const char ring_[]
static std::string histoType(const sistrip::HistoType &)
static const char calibrationTimeConstant_[]
static const char undefinedRunType_[]
static const char calibrationTailAS_[]
static const char fedVirginRaw_[]
static const char fecCrate_[]
static const char noiseGausAllStrips_[]
static const char cablingFromDevices_[]
static const char calibPeakRun_[]
static const char unknownMonitorable_[]
static const char fedChannel_[]
static const char fedTimingRun_[]
static const char noiseSpread_[]
static const char fecKey_[]
static const char unknownFedReadoutMode_[]
static const char unknownRunType_[]
static const char fastCablingMax_[]
static const char fedScopeMode_[]
static const char pedestalsMin_[]
static const char apv_[]
static const char fineDelayErr_[]
static const char optoScanRun_[]
static const char undefinedFedReadoutMode_[]
static const char noiseBin84AllStrips_[]
static const char fastCablingLowLevel_[]
static const char fedCablingRun_[]
static const char calibrationRiseTime_[]
static const char apvTimingError_[]
static const char fedTimingPeak_[]
static const char fastCablingConnsPerFed_[]
static const char calibrationRiseTimeMin_[]
static const char tib_[]
static const char calibDeconRun_[]
static const char feChan_[]
static const char daqScopeModeRun_[]
static const char fedTimingMax_[]
static const char fedSystem_[]
static std::string presentation(const sistrip::Presentation &)
static const char apvPeakMode_[]
static const char fecRing_[]
static const char calibrationChi2_[]
static std::string keyType(const sistrip::KeyType &)
static const uint16_t invalid_
Definition: Constants.h:16
static const char calibrationSmearingMin_[]
static const char apvTimingBase_[]
static const char fedTimingBase_[]
static const char optoScanLaserThresh_[]
static const char vpspScanAdcLevel_[]
static const char cablingFromConns_[]
static const char cablingFromDetIds_[]
static const char detKey_[]
static const char apvTimingTime_[]
static const char fedTimingDelay_[]
static const char undefinedApvReadoutMode_[]
static const char histo1d_[]
static std::string cablingSource(const sistrip::CablingSource &)
static const char daqScopeModeMeanSignal_[]
static const char calibrationSmearingMax_[]
static const char calibrationTail_[]
static const char noiseAllStrips_[]
static const char noiseChi2AllStrips_[]
static const char fedTimingTime_[]
static const char feUnit_[]
static const char calibrationChi2Min_[]
static const char calibrationChi2Max_[]
static const char pedestalsMax_[]
static const char fastCablingHighLevel_[]
static const char fecSystem_[]
static const char vpspScanApv1_[]
dbl *** dir
Definition: mlp_gen.cc:35
static const char noiseRMSAllStrips_[]
static const char calibrationRiseTimeAS_[]
static const char calibrationChi2AS_[]
static const char apvTimingPeak_[]
static const char vpspScanApv0_[]
static const char readoutView_[]
static std::string const source
Definition: EdmProvDump.cc:42
static const char disk_[]
static const char apvLatencyRun_[]
static const char pedestalsSpread_[]
static const char undefinedHistoType_[]
static const char vpspScanBothApvs_[]
static const char unknownApvReadoutMode_[]
static const char fedZeroSuppr_[]
static const char apvMultiMode_[]
static const char fastCablingHighRms_[]
static const char noiseSignif_[]
static std::string fedReadoutMode(const sistrip::FedReadoutMode &)
static const char petal_[]
static const char pedestalsAllStrips_[]