CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch1/src/CondFormats/RPCObjects/interface/RPCTechTriggerConfig.h

Go to the documentation of this file.
00001 // $Id: RPCTechTriggerConfig.h,v 1.1 2009/01/28 12:54:41 aosorio Exp $
00002 #ifndef RPCTECHTRIGGERCONFIG_H 
00003 #define RPCTECHTRIGGERCONFIG_H 1
00004 
00005 // Include files
00006 #include <iostream>
00007 
00015 class RPCTechTriggerConfig {
00016 public: 
00018   RPCTechTriggerConfig( ) {
00019     m_runId       = -1;
00020     m_runType     = -1;
00021     m_triggerMode = -1;
00022     
00023   }; 
00024   
00025   RPCTechTriggerConfig( int run, int runtype, int trigmode ) {
00026     m_runId       = run;
00027     m_runType     = runtype;
00028     m_triggerMode = trigmode;
00029     
00030   };
00031   
00032   
00033   virtual ~RPCTechTriggerConfig( ) {}; 
00034   
00035   int m_runId;
00036   int m_runType;
00037   int m_triggerMode;
00038   
00039 protected:
00040 
00041 private:
00042 
00043 };
00044 #endif // RPCTECHTRIGGERCONFIG_H