CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCTechTriggerConfig.h
Go to the documentation of this file.
1 // $Id: RPCTechTriggerConfig.h,v 1.1 2009/01/28 12:54:41 aosorio Exp $
2 #ifndef RPCTECHTRIGGERCONFIG_H
3 #define RPCTECHTRIGGERCONFIG_H 1
4 
5 // Include files
6 #include <iostream>
7 
16 public:
19  m_runId = -1;
20  m_runType = -1;
21  m_triggerMode = -1;
22 
23  };
24 
25  RPCTechTriggerConfig( int run, int runtype, int trigmode ) {
26  m_runId = run;
27  m_runType = runtype;
28  m_triggerMode = trigmode;
29 
30  };
31 
32 
33  virtual ~RPCTechTriggerConfig( ) {};
34 
35  int m_runId;
36  int m_runType;
38 
39 protected:
40 
41 private:
42 
43 };
44 #endif // RPCTECHTRIGGERCONFIG_H
RPCTechTriggerConfig(int run, int runtype, int trigmode)
RPCTechTriggerConfig()
Standard constructor.