ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitHzz4l/Selection/interface/PassHLT.h
Revision: 1.5
Committed: Wed May 23 22:06:39 2012 UTC (12 years, 11 months ago) by anlevin
Content type: text/plain
Branch: MAIN
CVS Tags: synced_FSR_2, synced_FSR, synched2
Changes since 1.4: +7 -1 lines
Log Message:
made changes for sync on the summer 12 file

File Contents

# User Rev Content
1 khahn 1.1 #ifndef PASS_HLT
2     #define PASS_HLT
3    
4     #include <stdint.h>
5 khahn 1.3 #include <bitset>
6     #include "TriggerUtilsBits.h"
7 khahn 1.1
8 anlevin 1.5 enum EMCYear
9     {
10     k2011_MC,
11     k2012_MC
12     };
13    
14 khahn 1.3 bool passHLTSingleMuon(std::bitset<TRIGGER_BIG_NUMBER>);
15     bool passHLT(std::bitset<TRIGGER_BIG_NUMBER>, unsigned runNum, unsigned channel);
16 anlevin 1.5 bool passHLTMC(std::bitset<TRIGGER_BIG_NUMBER> triggerBits, unsigned runNum, unsigned channel, EMCYear mc_year) ;
17 khahn 1.1 #endif