00001 // Last commit: $Id: ConstantsForPresentation.h,v 1.4 2009/02/10 21:45:54 lowette Exp $ 00002 00003 #ifndef DataFormats_SiStripCommon_ConstantsForPresentation_H 00004 #define DataFormats_SiStripCommon_ConstantsForPresentation_H 00005 00006 #include "DataFormats/SiStripCommon/interface/Constants.h" 00007 #include <string> 00008 00015 namespace sistrip { 00016 00017 // ---------- Constants ---------- 00018 00019 static const char unknownPresentation_[] = "UnknownPresentation"; 00020 static const char undefinedPresentation_[] = "UndefinedPresentation"; 00021 00022 static const char histo1d_[] = "Histo1D"; 00023 static const char histo2dSum_[] = "Histo2DSum"; 00024 static const char histo2dScatter_[] = "Histo2DScatter"; 00025 static const char profile1D_[] = "Profile1D"; 00026 00027 // ---------- Enumerated type ---------- 00028 00029 enum Presentation { UNKNOWN_PRESENTATION = sistrip::unknown_, 00030 UNDEFINED_PRESENTATION = sistrip::invalid_, 00031 HISTO_1D = 1, 00032 HISTO_2D_SUM = 2, 00033 HISTO_2D_SCATTER = 3, 00034 PROFILE_1D = 4 00035 }; 00036 00037 } 00038 00039 #endif // DataFormats_SiStripCommon_ConstantsForPresentation_H 00040 00041