ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/interface/AnaTimingL1.h
Revision: 1.2
Committed: Mon Oct 29 12:41:09 2012 UTC (12 years, 6 months ago) by konec
Content type: text/plain
Branch: MAIN
Changes since 1.1: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
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.2 void run(const EventObj* ev, const MuonObj* muon, const L1ObjColl *l1RpcColl, const L1ObjColl *l1OtherColl, const L1ObjColl *l1GmtColl);
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