5 |
|
#include <TString.h> |
6 |
|
#include "Objects.h" |
7 |
|
#include "BaseCycleContainer.h" |
8 |
+ |
#include "ObjectHandler.h" |
9 |
|
#include "../../core/include/SLogger.h" |
10 |
|
|
11 |
|
class SelectionModule{ |
29 |
|
void clearSelectionModulesList(); |
30 |
|
bool passSelection(BaseCycleContainer *bcc); |
31 |
|
bool passInvertedSelection(BaseCycleContainer *bcc); |
32 |
+ |
bool passSelection(); |
33 |
+ |
bool passInvertedSelection(); |
34 |
|
|
35 |
|
void printCutFlow(); |
36 |
|
|
43 |
|
std::vector<SelectionModule*> m_cuts; |
44 |
|
std::vector<int> m_cutflow; |
45 |
|
int Ntotal; |
46 |
+ |
|
47 |
|
}; |
48 |
|
|
49 |
|
|