Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:13

0001 
0002 #ifndef DataFormats_SiStripCommon_ConstantsForHistoType_H
0003 #define DataFormats_SiStripCommon_ConstantsForHistoType_H
0004 
0005 #include "DataFormats/SiStripCommon/interface/Constants.h"
0006 #include <string>
0007 
0008 /** 
0009     @file ConstantsForHistoType.h
0010 
0011     @brief Constants and enumerated type for sistrip::Presentation
0012 */
0013 
0014 namespace sistrip {
0015 
0016   // ---------- Constants ----------
0017 
0018   static const char unknownHistoType_[] = "UnknownHistoType";
0019   static const char undefinedHistoType_[] = "UndefinedHistoType";
0020 
0021   static const char expertHisto_[] = "ExpertHisto";
0022   static const char summaryHisto_[] = "SummaryHisto";
0023 
0024   // ---------- Enumerated type ----------
0025 
0026   enum HistoType {
0027     UNKNOWN_HISTO_TYPE = sistrip::unknown_,
0028     UNDEFINED_HISTO_TYPE = sistrip::invalid_,
0029     EXPERT_HISTO = 1,
0030     SUMMARY_HISTO = 2
0031   };
0032 
0033 }  // namespace sistrip
0034 
0035 #endif  // DataFormats_SiStripCommon_ConstantsForHistoType_H