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 |
|
|
#include <vector>
|
11 |
|
|
#include <map>
|
12 |
|
|
|
13 |
|
|
|
14 |
|
|
class AnaTimingL1 {
|
15 |
|
|
public:
|
16 |
|
|
AnaTimingL1() : debug(false) {}
|
17 |
|
|
void init(TObjArray& histos);
|
18 |
konec |
1.3 |
void run(const EventObj* ev, const MuonObj* muon, const L1ObjColl *l1Coll);
|
19 |
konec |
1.1 |
void resume(TObjArray& histos);
|
20 |
|
|
bool debug;
|
21 |
|
|
|
22 |
|
|
private:
|
23 |
|
|
// double maxPt(const std::vector<L1Obj> & l1Objs) const;
|
24 |
|
|
// typedef std::map< unsigned int, std::pair<unsigned int, unsigned int> > EffRunMap;
|
25 |
|
|
// EffRunMap effRunMap;
|
26 |
|
|
|
27 |
|
|
};
|
28 |
|
|
#endif
|
29 |
|
|
|