ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/interface/AnaTimingL1.h
Revision: 1.3
Committed: Tue Nov 6 12:56:50 2012 UTC (12 years, 5 months ago) by konec
Content type: text/plain
Branch: MAIN
Changes since 1.2: +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.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