1 |
konec |
1.1 |
#ifndef UserCode_L1RpcTriggerAnalysis_AnaTimingL1_H
|
2 |
|
|
#define UserCode_L1RpcTriggerAnalysis_AnaTimingL1_H
|
3 |
|
|
|
4 |
|
|
class TObjArray;
|
5 |
|
|
class MuonObj;
|
6 |
|
|
class L1ObjColl;
|
7 |
|
|
class L1Obj;
|
8 |
|
|
class EventObj;
|
9 |
|
|
|
10 |
konec |
1.4 |
#include "FWCore/ParameterSet/interface/ParameterSet.h"
|
11 |
konec |
1.1 |
|
12 |
konec |
1.4 |
class AnaTimingL1 {
|
13 |
konec |
1.1 |
|
14 |
|
|
public:
|
15 |
konec |
1.4 |
AnaTimingL1(const edm::ParameterSet& cfg) : debug(false), theConfig(cfg) {}
|
16 |
konec |
1.1 |
void init(TObjArray& histos);
|
17 |
konec |
1.3 |
void run(const EventObj* ev, const MuonObj* muon, const L1ObjColl *l1Coll);
|
18 |
konec |
1.1 |
void resume(TObjArray& histos);
|
19 |
konec |
1.4 |
|
20 |
konec |
1.1 |
bool debug;
|
21 |
|
|
|
22 |
|
|
private:
|
23 |
konec |
1.4 |
edm::ParameterSet theConfig;
|
24 |
konec |
1.1 |
|
25 |
|
|
};
|
26 |
|
|
#endif
|
27 |
|
|
|