1 |
#ifndef PASS_HLT
|
2 |
#define PASS_HLT
|
3 |
|
4 |
#include <stdint.h>
|
5 |
#include <bitset>
|
6 |
#include "TriggerUtilsBits.h"
|
7 |
#include "ParseArgs.h"
|
8 |
|
9 |
enum EMCYear
|
10 |
{
|
11 |
k2011_MC,
|
12 |
k2012_MC
|
13 |
};
|
14 |
|
15 |
bool passHLTSingleMuon(std::bitset<TRIGGER_BIG_NUMBER>);
|
16 |
bool passHLT(std::bitset<TRIGGER_BIG_NUMBER>, unsigned runNum, unsigned channel);
|
17 |
bool passHLTMC(std::bitset<TRIGGER_BIG_NUMBER> triggerBits, unsigned runNum, unsigned channel, EMCYear mc_year) ;
|
18 |
bool passHLTEMU(ControlFlags &ctrl, std::bitset<TRIGGER_BIG_NUMBER> triggerBits);
|
19 |
#endif
|