CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Static Public Member Functions | Public Attributes
EVTColContainer Class Reference

container with all the objects needed More...

Public Types

enum  {
  PHOTON = 22, ELEC = 11, MUON = 13, MUTRK = 130,
  PFTAU = 15, TRACK = 0, PFMET = 39, PFMHT = 40,
  MET = 390000, GENMET = 390001, CALOMET = 390002, HLTMET = 390003,
  L1MET = 390004, PFJET = 211, CALOJET = 111, CALOMHT = 400002,
  _nMAX
}
 
enum  {
  MUON = 13, ELEC = 11, PHOTON = 22, CALOMET = 390002,
  PFMET = 39, PFTAU = 15, PFJET = 211, _nMAX
}
 

Public Member Functions

 EVTColContainer ()
 
 EVTColContainer ()
 
const unsigned int getSize (const unsigned int &objtype) const
 
const unsigned int getSize (const unsigned int &objtype) const
 Get size of collections. More...
 
bool isAllInit ()
 
bool isAllInit ()
 
bool isCommonInit ()
 
bool isCommonInit ()
 
void reset ()
 
void reset ()
 Reset: clear all collections. More...
 
void set (const reco::MuonCollection *v)
 Setter: multiple overloaded function. More...
 
void set (const reco::GsfElectronCollection *v)
 
void set (const reco::PhotonCollection *v)
 
void set (const reco::CaloMETCollection *v)
 
void set (const reco::PFMETCollection *v)
 
void set (const reco::PFTauCollection *v)
 
void set (const reco::PFJetCollection *v)
 
void set (const reco::MuonCollection *v)
 Setter: multiple overloaded function. More...
 
void set (const reco::JetTagCollection *v)
 
void set (const reco::TrackCollection *v)
 
void set (const reco::GsfElectronCollection *v)
 
void set (const reco::PhotonCollection *v)
 
void set (const reco::METCollection *v)
 
void set (const reco::PFMETCollection *v)
 
void set (const reco::GenMETCollection *v)
 
void set (const reco::CaloMETCollection *v)
 
void set (const l1extra::L1EtMissParticleCollection *v)
 
void set (const reco::PFTauCollection *v)
 
void set (const reco::PFJetCollection *v)
 
void set (const reco::CaloJetCollection *v)
 
void setCaloMHT (const reco::CaloMETCollection *v)
 
void setPFMHT (const reco::PFMETCollection *v)
 

Static Public Member Functions

static std::string getTypeString (const unsigned int &objtype)
 
static const std::string getTypeString (const unsigned int &objtype)
 Tranform types into strings. More...
 

Public Attributes

const reco::BeamSpotbs
 
const std::vector< reco::CaloJet > * caloJets
 
const std::vector< reco::CaloMET > * caloMETs
 
const std::vector< reco::CaloMET > * caloMHTs
 
const std::vector< reco::GsfElectron > * electrons
 
const reco::GenJetCollectiongenJets
 
const std::vector< reco::GenMET > * genMETs
 
const reco::GenParticleCollectiongenParticles
 
const reco::JetTagCollectionjetTags
 
const std::vector< l1extra::L1EtMissParticle > * l1METs
 
const std::vector< reco::MET > * METs
 
const std::vector< reco::Muon > * muons
 
int nInitialized
 
int nOfCollections
 
const std::vector< reco::PFJet > * pfJets
 
const std::vector< reco::PFMET > * pfMETs
 
const std::vector< reco::PFMET > * pfMHTs
 
const std::vector< reco::PFTau > * pfTaus
 
const std::vector< reco::Photon > * photons
 
const trigger::TriggerEventWithRefsrawTriggerEvent
 
const std::vector< reco::Track > * tracks
 
const edm::TriggerResultstriggerResults
 

Detailed Description

container with all the objects needed

Container with all the objects needed Notice that I have "more or less" followed the pdgIds of the particles involved.

Class to manage all the object collections in the Exotica Validation package.

Author
J. Duarte Campderros

Generate histograms for trigger efficiencies Higgs related Documentation available on the CMS TWiki: https://twiki.cern.ch/twiki/bin/view/CMS/HiggsWGHLTValidate

Author
J. Duarte Campderros

Definition at line 45 of file EVTColContainer.cc.

Member Enumeration Documentation

anonymous enum
Enumerator
PHOTON 
ELEC 
MUON 
MUTRK 
PFTAU 
TRACK 
PFMET 
PFMHT 
MET 
GENMET 
CALOMET 
HLTMET 
L1MET 
PFJET 
CALOJET 
CALOMHT 
_nMAX 

Definition at line 46 of file EVTColContainer.cc.

46  {
47  PHOTON = 22,
48  ELEC = 11,
49  MUON = 13,
50  MUTRK = 130,
51  PFTAU = 15,
52  TRACK = 0,
53  PFMET = 39,
54  PFMHT = 40,
55  MET = 390000,
56  GENMET = 390001,
57  CALOMET = 390002,
58  HLTMET = 390003,
59  L1MET = 390004,
60  PFJET = 211,
61  CALOJET = 111,
62  CALOMHT = 400002,
63  _nMAX
64  };
Computes the MET from a collection of PFCandidates. HF missing!
Definition: PFMET.h:30
anonymous enum
Enumerator
MUON 
ELEC 
PHOTON 
CALOMET 
PFMET 
PFTAU 
PFJET 
_nMAX 

Definition at line 42 of file EVTColContainer.cc.

Constructor & Destructor Documentation

EVTColContainer::EVTColContainer ( )
inline

Definition at line 87 of file EVTColContainer.cc.

87  :
88  nOfCollections(6),
89  nInitialized(0),
90  genParticles(nullptr),
91  muons(nullptr),
92  tracks(nullptr),
93  electrons(nullptr),
94  photons(nullptr),
95  METs(nullptr),
96  pfMETs(nullptr),
97  pfMHTs(nullptr),
98  genMETs(nullptr),
99  caloMETs(nullptr),
100  caloMHTs(nullptr),
101  l1METs(nullptr),
102  pfTaus(nullptr),
103  pfJets(nullptr),
104  caloJets(nullptr),
105  triggerResults(nullptr),
106  bs(nullptr)
107  {
108  }
const std::vector< reco::Muon > * muons
const std::vector< reco::CaloMET > * caloMETs
const std::vector< reco::MET > * METs
const std::vector< reco::CaloJet > * caloJets
const reco::GenParticleCollection * genParticles
const std::vector< reco::PFTau > * pfTaus
const std::vector< reco::PFMET > * pfMHTs
const std::vector< reco::GenMET > * genMETs
const reco::BeamSpot * bs
const std::vector< reco::PFJet > * pfJets
const std::vector< reco::Track > * tracks
const std::vector< reco::Photon > * photons
const std::vector< l1extra::L1EtMissParticle > * l1METs
const std::vector< reco::GsfElectron > * electrons
const std::vector< reco::CaloMET > * caloMHTs
const std::vector< reco::PFMET > * pfMETs
const edm::TriggerResults * triggerResults
EVTColContainer::EVTColContainer ( )
inline

Definition at line 70 of file EVTColContainer.cc.

70  :
71  nOfCollections(7),
72  nInitialized(0),
73  genParticles(nullptr),
74  genJets(nullptr),
75  muons(nullptr),
76  electrons(nullptr),
77  photons(nullptr),
78  caloMETs(nullptr),
79  pfMETs(nullptr),
80  pfTaus(nullptr),
81  pfJets(nullptr),
82  jetTags(nullptr),
83  //tracks(0),
84  rawTriggerEvent(nullptr),
85  triggerResults(nullptr)
86  {
87  }
const std::vector< reco::Muon > * muons
const trigger::TriggerEventWithRefs * rawTriggerEvent
const std::vector< reco::CaloMET > * caloMETs
const reco::GenParticleCollection * genParticles
const std::vector< reco::PFTau > * pfTaus
const reco::GenJetCollection * genJets
const reco::JetTagCollection * jetTags
const std::vector< reco::PFJet > * pfJets
const std::vector< reco::Photon > * photons
const std::vector< reco::GsfElectron > * electrons
const std::vector< reco::PFMET > * pfMETs
const edm::TriggerResults * triggerResults

Member Function Documentation

const unsigned int EVTColContainer::getSize ( const unsigned int &  objtype) const
inline

Definition at line 154 of file EVTColContainer.cc.

References CALOMET, ELEC, MUON, PFJET, PFMET, PFTAU, PHOTON, and findQualityFiles::size.

155  {
156  unsigned int size = 0;
157  if( objtype == EVTColContainer::MUON && muons != nullptr )
158  {
159  size = muons->size();
160  }
161  else if( objtype == EVTColContainer::ELEC && electrons != nullptr )
162  {
163  size = electrons->size();
164  }
165  else if( objtype == EVTColContainer::PHOTON && photons != nullptr )
166  {
167  size = photons->size();
168  }
169  else if( objtype == EVTColContainer::CALOMET && caloMETs != nullptr )
170  {
171  size = caloMETs->size();
172  }
173  else if( objtype == EVTColContainer::PFMET && pfMETs != nullptr )
174  {
175  size = pfMETs->size();
176  }
177  else if( objtype == EVTColContainer::PFTAU && pfTaus != nullptr )
178  {
179  size = pfTaus->size();
180  }
181  else if( objtype == EVTColContainer::PFJET && pfJets != nullptr )
182  {
183  size = pfJets->size();
184  }
185  /*else if( objtype == EVTColContainer::TRACK && tracks != 0 )
186  {
187  size = tracks->size();
188  }*/
189 
190  return size;
191  }
size
Write out results.
const std::vector< reco::Muon > * muons
const std::vector< reco::CaloMET > * caloMETs
const std::vector< reco::PFTau > * pfTaus
const std::vector< reco::PFJet > * pfJets
const std::vector< reco::Photon > * photons
const std::vector< reco::GsfElectron > * electrons
const std::vector< reco::PFMET > * pfMETs
const unsigned int EVTColContainer::getSize ( const unsigned int &  objtype) const
inline

Get size of collections.

Definition at line 216 of file EVTColContainer.cc.

References CALOJET, CALOMET, CALOMHT, ELEC, GENMET, L1MET, MET, MUON, MUTRK, PFJET, PFMET, PFMHT, PFTAU, PHOTON, findQualityFiles::size, and TRACK.

217  {
218  unsigned int size = 0;
219  if (objtype == EVTColContainer::MUON && muons != nullptr) {
220  size = muons->size();
221  } else if (objtype == EVTColContainer::MUTRK && tracks != nullptr) {
222  size = tracks->size();
223  } else if (objtype == EVTColContainer::TRACK && tracks != nullptr) {
224  size = tracks->size();
225  } else if (objtype == EVTColContainer::ELEC && electrons != nullptr) {
226  size = electrons->size();
227  } else if (objtype == EVTColContainer::PHOTON && photons != nullptr) {
228  size = photons->size();
229  } else if (objtype == EVTColContainer::MET && METs != nullptr) {
230  size = METs->size();
231  } else if (objtype == EVTColContainer::PFMET && pfMETs != nullptr) {
232  size = pfMETs->size();
233  } else if (objtype == EVTColContainer::PFMHT && pfMHTs != nullptr) {
234  size = pfMHTs->size();
235  } else if (objtype == EVTColContainer::GENMET && genMETs != nullptr) {
236  size = genMETs->size();
237  } else if (objtype == EVTColContainer::CALOMET && caloMETs != nullptr) {
238  size = caloMETs->size();
239  } else if (objtype == EVTColContainer::CALOMHT && caloMHTs != nullptr) {
240  size = caloMHTs->size();
241  } else if (objtype == EVTColContainer::L1MET && l1METs != nullptr) {
242  size = l1METs->size();
243  } else if (objtype == EVTColContainer::PFTAU && pfTaus != nullptr) {
244  size = pfTaus->size();
245  } else if (objtype == EVTColContainer::PFJET && pfJets != nullptr) {
246  size = pfJets->size();
247  } else if (objtype == EVTColContainer::CALOJET && caloJets != nullptr) {
248  size = caloJets->size();
249  }
250 
251  return size;
252  }
size
Write out results.
const std::vector< reco::Muon > * muons
const std::vector< reco::CaloMET > * caloMETs
const std::vector< reco::MET > * METs
const std::vector< reco::CaloJet > * caloJets
const std::vector< reco::PFTau > * pfTaus
const std::vector< reco::PFMET > * pfMHTs
const std::vector< reco::GenMET > * genMETs
const std::vector< reco::PFJet > * pfJets
const std::vector< reco::Track > * tracks
const std::vector< reco::Photon > * photons
const std::vector< l1extra::L1EtMissParticle > * l1METs
const std::vector< reco::GsfElectron > * electrons
const std::vector< reco::CaloMET > * caloMHTs
const std::vector< reco::PFMET > * pfMETs
static std::string EVTColContainer::getTypeString ( const unsigned int &  objtype)
inlinestatic

Definition at line 193 of file EVTColContainer.cc.

References CALOMET, ELEC, MUON, PFJET, PFMET, PFTAU, PHOTON, and AlCaHLTBitMon_QueryRunRegistry::string.

194  {
195  std::string objTypestr;
196 
197  if( objtype == EVTColContainer::MUON )
198  {
199  objTypestr = "Mu";
200  }
201  else if( objtype == EVTColContainer::ELEC )
202  {
203  objTypestr = "Ele";
204  }
205  else if( objtype == EVTColContainer::PHOTON )
206  {
207  objTypestr = "Photon";
208  }
209  else if( objtype == EVTColContainer::CALOMET )
210  {
211  objTypestr = "MET";
212  }
213  else if( objtype == EVTColContainer::PFMET )
214  {
215  objTypestr = "PFMET";
216  }
217  else if( objtype == EVTColContainer::PFTAU )
218  {
219  objTypestr = "PFTau";
220  }
221  else if( objtype == EVTColContainer::PFJET )
222  {
223  objTypestr = "Jet";
224  }
225  /*else if( objtype == EVTColContainer::TRACK )
226  {
227  // FIXME: decide what to do! Just a patch
228  objTypestr = "TkMu";
229  }*/
230  else
231  {
232  edm::LogError("HiggsValidations") << "EVTColContainer::getTypeString, "
233  << "NOT Implemented error (object type id='" << objtype << "')" << std::endl;;
234  }
235 
236  return objTypestr;
237  }
static const std::string EVTColContainer::getTypeString ( const unsigned int &  objtype)
inlinestatic

Tranform types into strings.

Definition at line 255 of file EVTColContainer.cc.

References CALOJET, CALOMET, CALOMHT, ELEC, GENMET, L1MET, MET, MUON, MUTRK, PFJET, PFMET, PFMHT, PFTAU, PHOTON, AlCaHLTBitMon_QueryRunRegistry::string, and TRACK.

Referenced by HLTExoticaPlotter::analyze(), HLTHiggsPlotter::analyze(), HLTHiggsSubAnalysis::analyze(), HLTExoticaSubAnalysis::analyze(), HLTHiggsSubAnalysis::beginRun(), HLTHiggsPlotter::bookHist(), HLTHiggsSubAnalysis::bookHist(), HLTHiggsPlotter::bookHistograms(), HLTHiggsSubAnalysis::bookHistograms(), HLTHiggsSubAnalysis::getObjectsType(), HLTExoticaSubAnalysis::getObjectsType(), HLTExoticaSubAnalysis::HLTExoticaSubAnalysis(), HLTHiggsPlotter::HLTHiggsPlotter(), HLTHiggsSubAnalysis::HLTHiggsSubAnalysis(), HLTExoticaPlotter::plotterBookHistos(), and HLTExoticaSubAnalysis::subAnalysisBookHistos().

256  {
257  std::string objTypestr;
258 
259  if (objtype == EVTColContainer::MUON) {
260  objTypestr = "Mu";
261  } else if (objtype == EVTColContainer::MUTRK) {
262  objTypestr = "refittedStandAloneMuons";
263  } else if (objtype == EVTColContainer::TRACK) {
264  objTypestr = "Track";
265  } else if (objtype == EVTColContainer::ELEC) {
266  objTypestr = "Ele";
267  } else if (objtype == EVTColContainer::PHOTON) {
268  objTypestr = "Photon";
269  } else if (objtype == EVTColContainer::MET) {
270  objTypestr = "MET";
271  } else if (objtype == EVTColContainer::PFMET) {
272  objTypestr = "PFMET";
273  } else if (objtype == EVTColContainer::PFMHT) {
274  objTypestr = "PFMHT";
275  } else if (objtype == EVTColContainer::GENMET) {
276  objTypestr = "GenMET";
277  } else if (objtype == EVTColContainer::CALOMET) {
278  objTypestr = "CaloMET";
279  } else if (objtype == EVTColContainer::CALOMHT) {
280  objTypestr = "CaloMHT";
281  } else if (objtype == EVTColContainer::L1MET) {
282  objTypestr = "l1MET";
283  } else if (objtype == EVTColContainer::PFTAU) {
284  objTypestr = "PFTau";
285  } else if (objtype == EVTColContainer::PFJET) {
286  objTypestr = "PFJet";
287  } else if (objtype == EVTColContainer::CALOJET) {
288  objTypestr = "CaloJet";
289  } else {
290  edm::LogError("ExoticaValidations") << "EVTColContainer::getTypeString, "
291  << "NOT Implemented error (object type id='" << objtype << "')" << std::endl;;
292  }
293 
294  return objTypestr;
295  }
bool EVTColContainer::isAllInit ( )
inline

Definition at line 89 of file EVTColContainer.cc.

90  {
91  return (nInitialized == nOfCollections);
92  }
bool EVTColContainer::isAllInit ( )
inline

Definition at line 110 of file EVTColContainer.cc.

111  {
112  return (nInitialized == nOfCollections);
113  }
bool EVTColContainer::isCommonInit ( )
inline

Definition at line 94 of file EVTColContainer.cc.

95  {
96  return (rawTriggerEvent != nullptr);
97  }
const trigger::TriggerEventWithRefs * rawTriggerEvent
bool EVTColContainer::isCommonInit ( )
inline

Definition at line 115 of file EVTColContainer.cc.

Referenced by HLTExoticaSubAnalysis::getHandlesToObjects(), and HLTHiggsSubAnalysis::initobjects().

116  {
117  return false;
118  }
void EVTColContainer::reset ( void  )
inline

Definition at line 99 of file EVTColContainer.cc.

100  {
101  nInitialized = 0;
102  genParticles = nullptr;
103  genJets = nullptr;
104  muons = nullptr; electrons = nullptr; photons = nullptr; pfTaus=nullptr; caloMETs=nullptr; pfMETs= nullptr; pfJets=nullptr; //tracks=0;
105  jetTags = nullptr;
106  rawTriggerEvent = nullptr;
107  triggerResults = nullptr;
108  }
const std::vector< reco::Muon > * muons
const trigger::TriggerEventWithRefs * rawTriggerEvent
const std::vector< reco::CaloMET > * caloMETs
const reco::GenParticleCollection * genParticles
const std::vector< reco::PFTau > * pfTaus
const reco::GenJetCollection * genJets
const reco::JetTagCollection * jetTags
const std::vector< reco::PFJet > * pfJets
const std::vector< reco::Photon > * photons
const std::vector< reco::GsfElectron > * electrons
const std::vector< reco::PFMET > * pfMETs
const edm::TriggerResults * triggerResults
void EVTColContainer::reset ( void  )
inline

Reset: clear all collections.

Definition at line 121 of file EVTColContainer.cc.

Referenced by HLTHiggsValidator::analyze(), and HLTExoticaValidator::analyze().

122  {
123  nInitialized = 0;
124  genParticles = nullptr;
125  muons = nullptr;
126  tracks = nullptr;
127  electrons = nullptr;
128  photons = nullptr;
129  METs = nullptr;
130  pfMETs = nullptr;
131  pfMHTs = nullptr;
132  genMETs = nullptr;
133  caloMETs = nullptr;
134  caloMHTs = nullptr;
135  l1METs = nullptr;
136  pfTaus = nullptr;
137  pfJets = nullptr;
138  caloJets = nullptr;
139  triggerResults = nullptr;
140  bs = nullptr;
141  }
const std::vector< reco::Muon > * muons
const std::vector< reco::CaloMET > * caloMETs
const std::vector< reco::MET > * METs
const std::vector< reco::CaloJet > * caloJets
const reco::GenParticleCollection * genParticles
const std::vector< reco::PFTau > * pfTaus
const std::vector< reco::PFMET > * pfMHTs
const std::vector< reco::GenMET > * genMETs
const reco::BeamSpot * bs
const std::vector< reco::PFJet > * pfJets
const std::vector< reco::Track > * tracks
const std::vector< reco::Photon > * photons
const std::vector< l1extra::L1EtMissParticle > * l1METs
const std::vector< reco::GsfElectron > * electrons
const std::vector< reco::CaloMET > * caloMHTs
const std::vector< reco::PFMET > * pfMETs
const edm::TriggerResults * triggerResults
void EVTColContainer::set ( const reco::MuonCollection v)
inline

Setter: multiple overloaded function.

Definition at line 110 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

111  {
112  muons = v;
113  ++nInitialized;
114  }
const std::vector< reco::Muon > * muons
void EVTColContainer::set ( const reco::GsfElectronCollection v)
inline

Definition at line 115 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

116  {
117  electrons = v;
118  ++nInitialized;
119  }
const std::vector< reco::GsfElectron > * electrons
void EVTColContainer::set ( const reco::PhotonCollection v)
inline

Definition at line 120 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

121  {
122  photons = v;
123  ++nInitialized;
124  }
const std::vector< reco::Photon > * photons
void EVTColContainer::set ( const reco::CaloMETCollection v)
inline

Definition at line 125 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

126  {
127  caloMETs = v;
128  ++nInitialized;
129  }
const std::vector< reco::CaloMET > * caloMETs
void EVTColContainer::set ( const reco::PFMETCollection v)
inline

Definition at line 130 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

131  {
132  pfMETs = v;
133  ++nInitialized;
134  }
const std::vector< reco::PFMET > * pfMETs
void EVTColContainer::set ( const reco::PFTauCollection v)
inline

Definition at line 135 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

136  {
137  pfTaus = v;
138  ++nInitialized;
139  }
const std::vector< reco::PFTau > * pfTaus
void EVTColContainer::set ( const reco::PFJetCollection v)
inline

Definition at line 140 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

141  {
142  pfJets = v;
143  ++nInitialized;
144  }
const std::vector< reco::PFJet > * pfJets
void EVTColContainer::set ( const reco::MuonCollection v)
inline

Setter: multiple overloaded function.

Definition at line 144 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

Referenced by HLTExoticaSubAnalysis::getHandlesToObjects(), HLTHiggsSubAnalysis::initAndInsertJets(), and HLTHiggsSubAnalysis::initobjects().

145  {
146  muons = v;
147  ++nInitialized;
148  }
const std::vector< reco::Muon > * muons
void EVTColContainer::set ( const reco::JetTagCollection v)
inline

Definition at line 145 of file EVTColContainer.cc.

References findQualityFiles::v.

146  {
147  jetTags = v;
148  }
const reco::JetTagCollection * jetTags
void EVTColContainer::set ( const reco::TrackCollection v)
inline

Definition at line 149 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

150  {
151  tracks = v;
152  ++nInitialized;
153  }
const std::vector< reco::Track > * tracks
void EVTColContainer::set ( const reco::GsfElectronCollection v)
inline

Definition at line 154 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

155  {
156  electrons = v;
157  ++nInitialized;
158  }
const std::vector< reco::GsfElectron > * electrons
void EVTColContainer::set ( const reco::PhotonCollection v)
inline

Definition at line 159 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

160  {
161  photons = v;
162  ++nInitialized;
163  }
const std::vector< reco::Photon > * photons
void EVTColContainer::set ( const reco::METCollection v)
inline

Definition at line 164 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

165  {
166  METs = v;
167  ++nInitialized;
168  }
const std::vector< reco::MET > * METs
void EVTColContainer::set ( const reco::PFMETCollection v)
inline

Definition at line 169 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

170  {
171  pfMETs = v;
172  ++nInitialized;
173  }
const std::vector< reco::PFMET > * pfMETs
void EVTColContainer::set ( const reco::GenMETCollection v)
inline

Definition at line 179 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

180  {
181  genMETs = v;
182  ++nInitialized;
183  }
const std::vector< reco::GenMET > * genMETs
void EVTColContainer::set ( const reco::CaloMETCollection v)
inline

Definition at line 184 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

185  {
186  caloMETs = v;
187  ++nInitialized;
188  }
const std::vector< reco::CaloMET > * caloMETs
void EVTColContainer::set ( const l1extra::L1EtMissParticleCollection v)
inline

Definition at line 194 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

195  {
196  l1METs = v;
197  ++nInitialized;
198  }
const std::vector< l1extra::L1EtMissParticle > * l1METs
void EVTColContainer::set ( const reco::PFTauCollection v)
inline

Definition at line 199 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

200  {
201  pfTaus = v;
202  ++nInitialized;
203  }
const std::vector< reco::PFTau > * pfTaus
void EVTColContainer::set ( const reco::PFJetCollection v)
inline

Definition at line 204 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

205  {
206  pfJets = v;
207  ++nInitialized;
208  }
const std::vector< reco::PFJet > * pfJets
void EVTColContainer::set ( const reco::CaloJetCollection v)
inline

Definition at line 209 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

210  {
211  caloJets = v;
212  ++nInitialized;
213  }
const std::vector< reco::CaloJet > * caloJets
void EVTColContainer::setCaloMHT ( const reco::CaloMETCollection v)
inline

Definition at line 189 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

Referenced by HLTExoticaSubAnalysis::getHandlesToObjects().

190  {
191  caloMHTs = v;
192  ++nInitialized;
193  }
const std::vector< reco::CaloMET > * caloMHTs
void EVTColContainer::setPFMHT ( const reco::PFMETCollection v)
inline

Definition at line 174 of file EVTColContainer.cc.

References nInitialized, and findQualityFiles::v.

Referenced by HLTExoticaSubAnalysis::getHandlesToObjects().

175  {
176  pfMHTs = v;
177  ++nInitialized;
178  }
const std::vector< reco::PFMET > * pfMHTs

Member Data Documentation

const reco::BeamSpot* EVTColContainer::bs
const std::vector<reco::CaloJet>* EVTColContainer::caloJets

Definition at line 83 of file EVTColContainer.cc.

Referenced by HLTExoticaSubAnalysis::insertCandidates().

const std::vector< reco::CaloMET > * EVTColContainer::caloMETs
const std::vector<reco::CaloMET>* EVTColContainer::caloMHTs

Definition at line 79 of file EVTColContainer.cc.

Referenced by HLTExoticaSubAnalysis::insertCandidates().

const std::vector< reco::GsfElectron > * EVTColContainer::electrons
const reco::GenJetCollection* EVTColContainer::genJets
const std::vector<reco::GenMET>* EVTColContainer::genMETs

Definition at line 77 of file EVTColContainer.cc.

Referenced by HLTExoticaSubAnalysis::insertCandidates().

const reco::GenParticleCollection * EVTColContainer::genParticles
const reco::JetTagCollection* EVTColContainer::jetTags

Definition at line 66 of file EVTColContainer.cc.

const std::vector<l1extra::L1EtMissParticle>* EVTColContainer::l1METs

Definition at line 80 of file EVTColContainer.cc.

Referenced by HLTExoticaSubAnalysis::insertCandidates().

const std::vector<reco::MET>* EVTColContainer::METs

Definition at line 74 of file EVTColContainer.cc.

const std::vector< reco::Muon > * EVTColContainer::muons
int EVTColContainer::nInitialized

Definition at line 67 of file EVTColContainer.cc.

Referenced by set(), setCaloMHT(), and setPFMHT().

int EVTColContainer::nOfCollections

Definition at line 66 of file EVTColContainer.cc.

const std::vector< reco::PFJet > * EVTColContainer::pfJets

Definition at line 82 of file EVTColContainer.cc.

Referenced by HLTExoticaSubAnalysis::insertCandidates().

const std::vector< reco::PFMET > * EVTColContainer::pfMETs
const std::vector<reco::PFMET>* EVTColContainer::pfMHTs

Definition at line 76 of file EVTColContainer.cc.

Referenced by HLTExoticaSubAnalysis::insertCandidates().

const std::vector< reco::PFTau > * EVTColContainer::pfTaus
const std::vector< reco::Photon > * EVTColContainer::photons
const trigger::TriggerEventWithRefs* EVTColContainer::rawTriggerEvent

Definition at line 68 of file EVTColContainer.cc.

const std::vector<reco::Track>* EVTColContainer::tracks

Definition at line 71 of file EVTColContainer.cc.

Referenced by HLTExoticaSubAnalysis::insertCandidates().

const edm::TriggerResults * EVTColContainer::triggerResults