ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/interface/AnaMenu.h
Revision: 1.2
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.1: +4 -4 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #ifndef UserCode_L1RpcTriggerAnalysis_AnaMenu_H
2 #define UserCode_L1RpcTriggerAnalysis_AnaMenu_H
3
4 class TObjArray;
5 class MuonObj;
6 class EventObj;
7 class TriggerMenuResultObj;
8
9 #include <vector>
10 #include <map>
11 #include <string>
12
13 class AnaMenu {
14 public:
15 AnaMenu() : debug(false) {}
16 void init(TObjArray& histos);
17 bool filter( const EventObj* ev, const MuonObj* muon,
18 const TriggerMenuResultObj *bitsL1,
19 const TriggerMenuResultObj *bitsHLT);
20
21 void resume(TObjArray& histos);
22 bool debug;
23 private:
24 typedef std::map< std::string, unsigned int> AlgoMap ;
25 AlgoMap theAlgosL1, theAlgosHLT;
26 std::vector<std::string> namesL1, namesHLT;
27 };
28
29 #endif