ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/interface/AnaTimingL1.h
Revision: 1.1
Committed: Mon Oct 22 06:29:39 2012 UTC (12 years, 6 months ago) by konec
Content type: text/plain
Branch: MAIN
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     void run(const EventObj* ev, const MuonObj* muon, const L1ObjColl *l1RpcColl, const L1ObjColl *l1OtherColl);
19     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