CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Protected Types | Protected Member Functions | Protected Attributes
tnp::BaseTreeFiller Class Reference

#include <BaseTreeFiller.h>

Inheritance diagram for tnp::BaseTreeFiller:
tnp::TPTreeFiller

Public Member Functions

 BaseTreeFiller (const char *name, const edm::ParameterSet &config, edm::ConsumesCollector &&iC)
 specify the name of the TTree, and the configuration for it More...
 
 BaseTreeFiller (const char *name, const edm::ParameterSet &config, edm::ConsumesCollector &iC)
 
 BaseTreeFiller (BaseTreeFiller &main, const edm::ParameterSet &iConfig, edm::ConsumesCollector &&iC, const std::string &branchNamePrefix)
 Add branches to an existing TTree managed by another BaseTreeFiller. More...
 
void fill (const reco::CandidateBaseRef &probe) const
 To be called once per probe, to fill the values for this probe. More...
 
void init (const edm::Event &iEvent) const
 To be called once per event, to load possible external variables. More...
 
bool storePUweight () const
 
void writeProvenance (const edm::ParameterSet &pset) const
 
 ~BaseTreeFiller ()
 Destructor, does nothing but it's out-of-line as we have complex data members. More...
 

Protected Types

enum  WeightMode { None, Fixed, External }
 How event weights are defined: 'None' = no weights, 'Fixed' = one value specified in cfg file, 'External' = read weight from the event (as double) More...
 

Protected Member Functions

void addBranches_ (TTree *tree, const edm::ParameterSet &iConfig, edm::ConsumesCollector &iC, const std::string &branchNamePrefix="")
 

Protected Attributes

bool addEventVariablesInfo_
 Add branches with event variables: met, sum ET, .. etc. More...
 
bool addRunLumiInfo_
 Add branches with run and lumisection number. More...
 
edm::EDGetTokenT< reco::BeamSpotbeamSpotToken_
 
uint64_t event_
 
std::vector< ProbeFlagflags_
 
bool ignoreExceptions_
 Ignore exceptions when evaluating variables. More...
 
uint32_t lumi_
 
float mBSx_
 
float mBSy_
 
float mBSz_
 
edm::EDGetTokenT
< reco::CaloMETCollection
metToken_
 
float mMET_
 
float mMETSign_
 
uint32_t mNPV_
 
float mpfMET_
 
float mpfMETSign_
 
float mpfSumET_
 
float mPVx_
 
float mPVy_
 
float mPVz_
 
float mSumET_
 
float mtcMET_
 
float mtcMETSign_
 
float mtcSumET_
 
edm::EDGetTokenT
< reco::PFMETCollection
pfmetToken_
 
float PUweight_
 
edm::EDGetTokenT< double > PUweightSrcToken_
 
edm::EDGetTokenT
< reco::VertexCollection
recVtxsToken_
 
uint32_t run_
 
bool storePUweight_
 Store Pileup weight when running over Monte Carlo. More...
 
edm::EDGetTokenT
< reco::METCollection
tcmetToken_
 
TTree * tree_
 
std::vector< ProbeVariablevars_
 
float weight_
 
WeightMode weightMode_
 
edm::EDGetTokenT< double > weightSrcToken_
 

Detailed Description

Definition at line 137 of file BaseTreeFiller.h.

Member Enumeration Documentation

How event weights are defined: 'None' = no weights, 'Fixed' = one value specified in cfg file, 'External' = read weight from the event (as double)

Enumerator
None 
Fixed 
External 

Definition at line 171 of file BaseTreeFiller.h.

Constructor & Destructor Documentation

tnp::BaseTreeFiller::BaseTreeFiller ( const char *  name,
const edm::ParameterSet config,
edm::ConsumesCollector &&  iC 
)
inline

specify the name of the TTree, and the configuration for it

Definition at line 140 of file BaseTreeFiller.h.

140 : BaseTreeFiller(name, config, iC) {};
BaseTreeFiller(const char *name, const edm::ParameterSet &config, edm::ConsumesCollector &&iC)
specify the name of the TTree, and the configuration for it
tnp::BaseTreeFiller::BaseTreeFiller ( const char *  name,
const edm::ParameterSet config,
edm::ConsumesCollector iC 
)

Definition at line 32 of file BaseTreeFiller.cc.

References edm::ConsumesCollector::consumes(), event_(), edm::ParameterSet::existsAs(), edm::ParameterSet::getParameter(), HLT_25ns14e33_v1_cff::InputTag, TFileService::make(), mergeVDriftHistosByStation::name, and FSQ::None.

32  {
33  // make trees as requested
35  tree_ = fs->make<TTree>(name,name);
36 
37  // add the branches
38  addBranches_(tree_, iConfig, iC, "");
39 
40  // set up weights, if needed
41  if (iConfig.existsAs<double>("eventWeight")) {
43  weight_ = iConfig.getParameter<double>("eventWeight");
44  } else if (iConfig.existsAs<edm::InputTag>("eventWeight")) {
46  weightSrcToken_ = iC.consumes<double>(iConfig.getParameter<edm::InputTag>("eventWeight"));
47  } else {
48  weightMode_ = None;
49  }
50  if (weightMode_ != None) {
51  tree_->Branch("weight", &weight_, "weight/F");
52  }
53  storePUweight_ = iConfig.existsAs<edm::InputTag>("PUWeightSrc") ? true: false;
54  if(storePUweight_) {
55  PUweightSrcToken_ = iC.consumes<double>(iConfig.getParameter<edm::InputTag>("PUWeightSrc"));
56  tree_->Branch("PUweight", &PUweight_, "PUweight/F");
57  }
58 
59  addRunLumiInfo_ = iConfig.existsAs<bool>("addRunLumiInfo") ? iConfig.getParameter<bool>("addRunLumiInfo") : false;
60  if (addRunLumiInfo_) {
61  tree_->Branch("run", &run_, "run/i");
62  tree_->Branch("lumi", &lumi_, "lumi/i");
63  tree_->Branch("event", &event_, "event/l");
64  }
65  addEventVariablesInfo_ = iConfig.existsAs<bool>("addEventVariablesInfo") ? iConfig.getParameter<bool>("addEventVariablesInfo") : false;
67  recVtxsToken_ = iC.consumes<reco::VertexCollection>(edm::InputTag("offlinePrimaryVertices"));
68  beamSpotToken_ = iC.consumes<reco::BeamSpot>(edm::InputTag("offlineBeamSpot"));
72  tree_->Branch("event_nPV" ,&mNPV_ ,"mNPV/I");
73  tree_->Branch("event_met_calomet" ,&mMET_ ,"mMET/F");
74  tree_->Branch("event_met_calosumet" ,&mSumET_ ,"mSumET/F");
75  tree_->Branch("event_met_calometsignificance",&mMETSign_ ,"mMETSign/F");
76  tree_->Branch("event_met_tcmet" ,&mtcMET_ ,"mtcMET/F");
77  tree_->Branch("event_met_tcsumet" ,&mtcSumET_ ,"mtcSumET/F");
78  tree_->Branch("event_met_tcmetsignificance",&mtcMETSign_ ,"mtcMETSign/F");
79  tree_->Branch("event_met_pfmet" ,&mpfMET_ ,"mpfMET/F");
80  tree_->Branch("event_met_pfsumet" ,&mpfSumET_ ,"mpfSumET/F");
81  tree_->Branch("event_met_pfmetsignificance",&mpfMETSign_ ,"mpfMETSign/F");
82  tree_->Branch("event_PrimaryVertex_x" ,&mPVx_ ,"mPVx/F");
83  tree_->Branch("event_PrimaryVertex_y" ,&mPVy_ ,"mPVy/F");
84  tree_->Branch("event_PrimaryVertex_z" ,&mPVz_ ,"mPVz/F");
85  tree_->Branch("event_BeamSpot_x" ,&mBSx_ ,"mBSx/F");
86  tree_->Branch("event_BeamSpot_y" ,&mBSy_ ,"mBSy/F");
87  tree_->Branch("event_BeamSpot_z" ,&mBSz_ ,"mBSz/F");
88  }
89 
90  ignoreExceptions_ = iConfig.existsAs<bool>("ignoreExceptions") ? iConfig.getParameter<bool>("ignoreExceptions") : false;
91 }
bool addEventVariablesInfo_
Add branches with event variables: met, sum ET, .. etc.
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
edm::EDGetTokenT< reco::PFMETCollection > pfmetToken_
bool addRunLumiInfo_
Add branches with run and lumisection number.
edm::EDGetTokenT< double > PUweightSrcToken_
std::vector< Vertex > VertexCollection
collection of Vertex objects
Definition: VertexFwd.h:9
T * make(const Args &...args) const
make new ROOT object
Definition: TFileService.h:64
std::vector< reco::MET > METCollection
collection of MET objects
Definition: METCollection.h:23
edm::EDGetTokenT< reco::CaloMETCollection > metToken_
edm::EDGetTokenT< reco::METCollection > tcmetToken_
void addBranches_(TTree *tree, const edm::ParameterSet &iConfig, edm::ConsumesCollector &iC, const std::string &branchNamePrefix="")
std::vector< reco::CaloMET > CaloMETCollection
collection of CaloMET objects
edm::EDGetTokenT< reco::VertexCollection > recVtxsToken_
edm::EDGetTokenT< reco::BeamSpot > beamSpotToken_
std::vector< reco::PFMET > PFMETCollection
collection of PFMET objects
bool ignoreExceptions_
Ignore exceptions when evaluating variables.
edm::EDGetTokenT< double > weightSrcToken_
bool storePUweight_
Store Pileup weight when running over Monte Carlo.
tnp::BaseTreeFiller::BaseTreeFiller ( BaseTreeFiller main,
const edm::ParameterSet iConfig,
edm::ConsumesCollector &&  iC,
const std::string &  branchNamePrefix 
)

Add branches to an existing TTree managed by another BaseTreeFiller.

Definition at line 93 of file BaseTreeFiller.cc.

References addBranches_(), addRunLumiInfo_, storePUweight_, and tree_.

93  :
94  addRunLumiInfo_(false),
96  tree_(0)
97 {
98  addRunLumiInfo_ = main.addRunLumiInfo_;
99  storePUweight_ = main.storePUweight_;
100  addBranches_(main.tree_, iConfig, iC, branchNamePrefix);
101 }
bool addEventVariablesInfo_
Add branches with event variables: met, sum ET, .. etc.
bool addRunLumiInfo_
Add branches with run and lumisection number.
void addBranches_(TTree *tree, const edm::ParameterSet &iConfig, edm::ConsumesCollector &iC, const std::string &branchNamePrefix="")
bool storePUweight_
Store Pileup weight when running over Monte Carlo.
tnp::BaseTreeFiller::~BaseTreeFiller ( )

Destructor, does nothing but it's out-of-line as we have complex data members.

Definition at line 141 of file BaseTreeFiller.cc.

141 { }

Member Function Documentation

void tnp::BaseTreeFiller::addBranches_ ( TTree *  tree,
const edm::ParameterSet iConfig,
edm::ConsumesCollector iC,
const std::string &  branchNamePrefix = "" 
)
protected

Definition at line 104 of file BaseTreeFiller.cc.

References edm::ConsumesCollector::consumes(), flags, edm::ParameterSet::getParameter(), edm::ParameterSet::getParameterNamesForType(), AlCaHLTBitMon_QueryRunRegistry::string, and makeLayoutFileForGui::variables.

Referenced by BaseTreeFiller().

104  {
105  // set up variables
107  //.. the ones that are strings
108  std::vector<std::string> stringVars = variables.getParameterNamesForType<std::string>();
109  for (std::vector<std::string>::const_iterator it = stringVars.begin(), ed = stringVars.end(); it != ed; ++it) {
110  vars_.push_back(tnp::ProbeVariable(branchNamePrefix + *it, variables.getParameter<std::string>(*it)));
111  }
112  //.. the ones that are InputTags
113  std::vector<std::string> inputTagVars = variables.getParameterNamesForType<edm::InputTag>();
114  for (std::vector<std::string>::const_iterator it = inputTagVars.begin(), ed = inputTagVars.end(); it != ed; ++it) {
115  vars_.push_back(tnp::ProbeVariable(branchNamePrefix + *it, iC.consumes<edm::ValueMap<float> >(variables.getParameter<edm::InputTag>(*it))));
116  }
117  // set up flags
119  //.. the ones that are strings
120  std::vector<std::string> stringFlags = flags.getParameterNamesForType<std::string>();
121  for (std::vector<std::string>::const_iterator it = stringFlags.begin(), ed = stringFlags.end(); it != ed; ++it) {
122  flags_.push_back(tnp::ProbeFlag(branchNamePrefix + *it, flags.getParameter<std::string>(*it)));
123  }
124  //.. the ones that are InputTags
125  std::vector<std::string> inputTagFlags = flags.getParameterNamesForType<edm::InputTag>();
126  for (std::vector<std::string>::const_iterator it = inputTagFlags.begin(), ed = inputTagFlags.end(); it != ed; ++it) {
127  flags_.push_back(tnp::ProbeFlag(branchNamePrefix + *it, iC.consumes<edm::View<reco::Candidate> >(flags.getParameter<edm::InputTag>(*it))));
128  }
129 
130  // then make all the variables in the trees
131  for (std::vector<tnp::ProbeVariable>::iterator it = vars_.begin(), ed = vars_.end(); it != ed; ++it) {
132  tree->Branch(it->name().c_str(), it->address(), (it->name()+"/F").c_str());
133  }
134 
135  for (std::vector<tnp::ProbeFlag>::iterator it = flags_.begin(), ed = flags_.end(); it != ed; ++it) {
136  tree->Branch(it->name().c_str(), it->address(), (it->name()+"/I").c_str());
137  }
138 
139 }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
std::vector< ProbeVariable > vars_
std::vector< Variable::Flags > flags
Definition: MVATrainer.cc:135
A variable for the probe: can be a string expression or an external ValueMap&lt;float&gt; ...
std::vector< std::string > getParameterNamesForType(bool trackiness=true) const
Definition: ParameterSet.h:194
std::vector< ProbeFlag > flags_
void tnp::BaseTreeFiller::fill ( const reco::CandidateBaseRef probe) const

To be called once per probe, to fill the values for this probe.

Definition at line 245 of file BaseTreeFiller.cc.

Referenced by tnp::TPTreeFiller::fill().

245  {
246  for (std::vector<tnp::ProbeVariable>::const_iterator it = vars_.begin(), ed = vars_.end(); it != ed; ++it) {
247  if (ignoreExceptions_) {
248  try{ it->fill(probe); } catch(cms::Exception &ex ){}
249  } else {
250  it->fill(probe);
251  }
252  }
253 
254  for (std::vector<tnp::ProbeFlag>::const_iterator it = flags_.begin(), ed = flags_.end(); it != ed; ++it) {
255  if (ignoreExceptions_) {
256  try{ it->fill(probe); } catch(cms::Exception &ex ){}
257  } else {
258  it->fill(probe);
259  }
260  }
261  if (tree_) tree_->Fill();
262 }
std::vector< ProbeVariable > vars_
std::vector< ProbeFlag > flags_
bool ignoreExceptions_
Ignore exceptions when evaluating variables.
void tnp::BaseTreeFiller::init ( const edm::Event iEvent) const

To be called once per event, to load possible external variables.

*********** store some event variables: MET, SumET ******

///////// Primary vertex //////////////

Definition at line 143 of file BaseTreeFiller.cc.

References SiPixelRawToDigiRegional_cfi::beamSpot, edm::EventID::event(), event_(), edm::Event::getByToken(), edm::EventBase::id(), edm::EventID::luminosityBlock(), objects.METAnalyzer::met, edm::EventID::run(), and puppiForMET_cff::weight.

Referenced by tnp::TPTreeFiller::init().

143  {
144  run_ = iEvent.id().run();
145  lumi_ = iEvent.id().luminosityBlock();
146  event_ = iEvent.id().event();
147 
148  for (std::vector<tnp::ProbeVariable>::const_iterator it = vars_.begin(), ed = vars_.end(); it != ed; ++it) {
149  it->init(iEvent);
150  }
151  for (std::vector<tnp::ProbeFlag>::const_iterator it = flags_.begin(), ed = flags_.end(); it != ed; ++it) {
152  it->init(iEvent);
153  }
154  if (weightMode_ == External) {
156  iEvent.getByToken(weightSrcToken_, weight);
157  weight_ = *weight;
158  }
159 
162  if(storePUweight_) {
163  bool isPresent = iEvent.getByToken(PUweightSrcToken_, weightPU);
164  if(isPresent) PUweight_ = (*weightPU).at(0);
165  else PUweight_ = 1.0;
166  }
167 
172  iEvent.getByToken(recVtxsToken_,recVtxs);
173  mNPV_ = 0;
174  mPVx_ = 100.0;
175  mPVy_ = 100.0;
176  mPVz_ = 100.0;
177 
178  for(unsigned int ind=0;ind<recVtxs->size();ind++) {
179  if (!((*recVtxs)[ind].isFake()) && ((*recVtxs)[ind].ndof()>4)
180  && (fabs((*recVtxs)[ind].z())<=24.0) &&
181  ((*recVtxs)[ind].position().Rho()<=2.0) ) {
182  mNPV_++;
183  if(mNPV_==1) { // store the first good primary vertex
184  mPVx_ = (*recVtxs)[ind].x();
185  mPVy_ = (*recVtxs)[ind].y();
186  mPVz_ = (*recVtxs)[ind].z();
187  }
188  }
189  }
190 
191 
194  iEvent.getByToken(beamSpotToken_, beamSpot);
195  mBSx_ = beamSpot->position().X();
196  mBSy_ = beamSpot->position().Y();
197  mBSz_ = beamSpot->position().Z();
198 
199 
202  iEvent.getByToken(metToken_,met);
203  if (met->size() == 0) {
204  mMET_ = -1;
205  mSumET_ = -1;
206  mMETSign_ = -1;
207  }
208  else {
209  mMET_ = (*met)[0].et();
210  mSumET_ = (*met)[0].sumEt();
211  mMETSign_ = (*met)[0].significance();
212  }
213 
216  iEvent.getByToken(tcmetToken_, tcmet);
217  if (tcmet->size() == 0) {
218  mtcMET_ = -1;
219  mtcSumET_ = -1;
220  mtcMETSign_ = -1;
221  }
222  else {
223  mtcMET_ = (*tcmet)[0].et();
224  mtcSumET_ = (*tcmet)[0].sumEt();
225  mtcMETSign_ = (*tcmet)[0].significance();
226  }
227 
230  iEvent.getByToken(pfmetToken_, pfmet);
231  if (pfmet->size() == 0) {
232  mpfMET_ = -1;
233  mpfSumET_ = -1;
234  mpfMETSign_ = -1;
235  }
236  else {
237  mpfMET_ = (*pfmet)[0].et();
238  mpfSumET_ = (*pfmet)[0].sumEt();
239  mpfMETSign_ = (*pfmet)[0].significance();
240  }
241  }
242 
243 }
RunNumber_t run() const
Definition: EventID.h:39
bool addEventVariablesInfo_
Add branches with event variables: met, sum ET, .. etc.
EventNumber_t event() const
Definition: EventID.h:41
edm::EDGetTokenT< reco::PFMETCollection > pfmetToken_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:464
edm::EDGetTokenT< double > PUweightSrcToken_
std::vector< ProbeVariable > vars_
LuminosityBlockNumber_t luminosityBlock() const
Definition: EventID.h:40
std::vector< ProbeFlag > flags_
edm::EDGetTokenT< reco::CaloMETCollection > metToken_
edm::EDGetTokenT< reco::METCollection > tcmetToken_
edm::EDGetTokenT< reco::VertexCollection > recVtxsToken_
edm::EventID id() const
Definition: EventBase.h:60
edm::EDGetTokenT< reco::BeamSpot > beamSpotToken_
edm::EDGetTokenT< double > weightSrcToken_
bool storePUweight_
Store Pileup weight when running over Monte Carlo.
bool tnp::BaseTreeFiller::storePUweight ( ) const
inline

Definition at line 163 of file BaseTreeFiller.h.

163 {return storePUweight_;};
bool storePUweight_
Store Pileup weight when running over Monte Carlo.
void tnp::BaseTreeFiller::writeProvenance ( const edm::ParameterSet pset) const

Write a string dump of this PSet into the TTree header. see macro in test directory for how to retrieve it from the output root file

Definition at line 263 of file BaseTreeFiller.cc.

References edm::ParameterSet::dump(), and list().

263  {
264  TList *list = tree_->GetUserInfo();
265  list->Add(new TObjString(pset.dump().c_str()));
266 }
std::string dump(unsigned int indent=0) const
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run

Member Data Documentation

bool tnp::BaseTreeFiller::addEventVariablesInfo_
protected

Add branches with event variables: met, sum ET, .. etc.

Definition at line 191 of file BaseTreeFiller.h.

bool tnp::BaseTreeFiller::addRunLumiInfo_
protected

Add branches with run and lumisection number.

Definition at line 185 of file BaseTreeFiller.h.

Referenced by BaseTreeFiller().

edm::EDGetTokenT<reco::BeamSpot> tnp::BaseTreeFiller::beamSpotToken_
protected

Definition at line 176 of file BaseTreeFiller.h.

uint64_t tnp::BaseTreeFiller::event_
mutableprotected

Definition at line 200 of file BaseTreeFiller.h.

std::vector<ProbeFlag> tnp::BaseTreeFiller::flags_
protected

Definition at line 168 of file BaseTreeFiller.h.

bool tnp::BaseTreeFiller::ignoreExceptions_
protected

Ignore exceptions when evaluating variables.

Definition at line 182 of file BaseTreeFiller.h.

uint32_t tnp::BaseTreeFiller::lumi_
mutableprotected

Definition at line 199 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::mBSx_
mutableprotected

Definition at line 202 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::mBSy_
mutableprotected

Definition at line 202 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::mBSz_
mutableprotected

Definition at line 202 of file BaseTreeFiller.h.

edm::EDGetTokenT<reco::CaloMETCollection> tnp::BaseTreeFiller::metToken_
protected

Definition at line 177 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::mMET_
mutableprotected

Definition at line 204 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::mMETSign_
mutableprotected

Definition at line 204 of file BaseTreeFiller.h.

uint32_t tnp::BaseTreeFiller::mNPV_
mutableprotected

Definition at line 199 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::mpfMET_
mutableprotected

Definition at line 204 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::mpfMETSign_
mutableprotected

Definition at line 204 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::mpfSumET_
mutableprotected

Definition at line 204 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::mPVx_
mutableprotected

Definition at line 202 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::mPVy_
mutableprotected

Definition at line 202 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::mPVz_
mutableprotected

Definition at line 202 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::mSumET_
mutableprotected

Definition at line 204 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::mtcMET_
mutableprotected

Definition at line 204 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::mtcMETSign_
mutableprotected

Definition at line 204 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::mtcSumET_
mutableprotected

Definition at line 204 of file BaseTreeFiller.h.

edm::EDGetTokenT<reco::PFMETCollection> tnp::BaseTreeFiller::pfmetToken_
protected

Definition at line 179 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::PUweight_
mutableprotected

Definition at line 198 of file BaseTreeFiller.h.

edm::EDGetTokenT<double> tnp::BaseTreeFiller::PUweightSrcToken_
protected

Definition at line 174 of file BaseTreeFiller.h.

edm::EDGetTokenT<reco::VertexCollection> tnp::BaseTreeFiller::recVtxsToken_
protected

Definition at line 175 of file BaseTreeFiller.h.

uint32_t tnp::BaseTreeFiller::run_
mutableprotected

Definition at line 199 of file BaseTreeFiller.h.

bool tnp::BaseTreeFiller::storePUweight_
protected

Store Pileup weight when running over Monte Carlo.

Definition at line 188 of file BaseTreeFiller.h.

Referenced by BaseTreeFiller().

edm::EDGetTokenT<reco::METCollection> tnp::BaseTreeFiller::tcmetToken_
protected

Definition at line 178 of file BaseTreeFiller.h.

TTree* tnp::BaseTreeFiller::tree_
mutableprotected

Definition at line 196 of file BaseTreeFiller.h.

Referenced by BaseTreeFiller(), and tnp::TPTreeFiller::TPTreeFiller().

std::vector<ProbeVariable> tnp::BaseTreeFiller::vars_
protected

Definition at line 163 of file BaseTreeFiller.h.

float tnp::BaseTreeFiller::weight_
mutableprotected

Definition at line 197 of file BaseTreeFiller.h.

WeightMode tnp::BaseTreeFiller::weightMode_
protected

Definition at line 172 of file BaseTreeFiller.h.

edm::EDGetTokenT<double> tnp::BaseTreeFiller::weightSrcToken_
protected

Definition at line 173 of file BaseTreeFiller.h.