CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/CondFormats/HLTObjects/interface/HLTPrescaleTableCond.h

Go to the documentation of this file.
00001 #ifndef CondFormats_HLTObjects_HLTPrescaleTableCond_h
00002 #define CondFormats_HLTObjects_HLTPrescaleTableCond_h
00003 
00004 #include "DataFormats/HLTReco/interface/HLTPrescaleTable.h"
00005 
00006 namespace trigger {
00007   class HLTPrescaleTableCond {
00008    public:
00010     HLTPrescaleTableCond(): hltPrescaleTable_() { }
00012     HLTPrescaleTableCond(const trigger::HLTPrescaleTable& hltPrescaleTable):
00013         hltPrescaleTable_(hltPrescaleTable) { }
00015     const trigger::HLTPrescaleTable& hltPrescaleTable() const {return hltPrescaleTable_;}
00017     trigger::HLTPrescaleTable hltPrescaleTable_;
00018   };
00019 }
00020 #endif