11 |
|
|
12 |
|
class TreeWriter { |
13 |
|
public : |
14 |
< |
TreeWriter(TString inputName, TString outputName ); |
14 |
> |
TreeWriter(TString inputName, TString outputName, int loggingVerbosity_ ); |
15 |
|
virtual ~TreeWriter(); |
16 |
|
virtual void Loop(); |
17 |
|
|
18 |
|
void SetProcessNEvents(int nEvents) { processNEvents = nEvents; } |
19 |
|
void SetReportEvents(int nEvents) { reportEvery = nEvents; } |
20 |
|
void SetLoggingVerbosity(int logVerb) { loggingVerbosity = logVerb; } |
21 |
< |
void DontSkimEvents(){ skim = false; } |
21 |
> |
void SkimEvents(bool skim_){ skim = skim_; } |
22 |
|
|
23 |
|
TChain *inputTree; |
24 |
|
susy::Event *event; |