CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
edm::TestMixedSource Class Reference

#include <TestMixedSource.h>

Inheritance diagram for edm::TestMixedSource:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 TestMixedSource (const edm::ParameterSet &)
 
 ~TestMixedSource ()
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &) override
 
virtual void beginJob ()
 
virtual void endJob ()
 

Private Attributes

int bunchcr_
 
edm::EDGetTokenT
< CrossingFrame< PCaloHit > > 
CaloToken1_
 
std::string fileName_
 
edm::EDGetTokenT
< CrossingFrame
< edm::HepMCProduct > > 
HepMCToken_
 
TFile * histFile_
 
TH1I * histHepMCProduct_bunch_
 
TH1I * histPCaloHit_bunch_
 
TH1I * histPSimHit_bunchPileups_MuonCSCHits_
 
TH1I * histPSimHit_bunchPileups_TrackerHitsTECHighTof_
 
TH1I * histPSimHit_bunchSignal_MuonCSCHits_
 
TH1I * histPSimHit_bunchSignal_TrackerHitsTECHighTof_
 
TH1I * histTrack_bunchPileups_
 
TH1I * histTrack_bunchSignal_
 
TH1I * histVertex_bunch_
 
int maxbunch_
 
int minbunch_
 
edm::EDGetTokenT
< CrossingFrame< PSimHit > > 
MuonToken_
 
std::ofstream outputFile
 
edm::EDGetTokenT
< CrossingFrame< SimTrack > > 
SimTrackToken_
 
edm::EDGetTokenT
< CrossingFrame< SimVertex > > 
SimVertexToken_
 
TH1I * tofhist_
 
TH1I * tofhist_sig_
 
edm::EDGetTokenT
< CrossingFrame< PSimHit > > 
TrackerToken0_
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 45 of file TestMixedSource.h.

Constructor & Destructor Documentation

TestMixedSource::TestMixedSource ( const edm::ParameterSet iConfig)
explicit

Definition at line 55 of file TestMixedSource.cc.

References CaloToken1_, HepMCToken_, histHepMCProduct_bunch_, histPCaloHit_bunch_, histPSimHit_bunchPileups_MuonCSCHits_, histPSimHit_bunchPileups_TrackerHitsTECHighTof_, histPSimHit_bunchSignal_MuonCSCHits_, histPSimHit_bunchSignal_TrackerHitsTECHighTof_, histTrack_bunchPileups_, histTrack_bunchSignal_, histVertex_bunch_, HLT_25ns14e33_v1_cff::InputTag, maxbunch_, minbunch_, MuonToken_, SimTrackToken_, SimVertexToken_, GlobalPosition_Frontier_DevDB_cff::tag, tofhist_, tofhist_sig_, and TrackerToken0_.

56 : fileName_(iConfig.getParameter<std::string>("fileName")), minbunch_(iConfig.getParameter<int>("minBunch")),maxbunch_(iConfig.getParameter<int>("maxBunch"))
57 {
58 
59  histTrack_bunchSignal_ = new TH1I("histoTrackSignal","Bunchcrossings",maxbunch_-minbunch_+1,minbunch_,maxbunch_+1);
60  histTrack_bunchPileups_ = new TH1I("histoTrackPileups","Bunchcrossings",maxbunch_-minbunch_+1,minbunch_,maxbunch_+1);
61 
62  // Vertex
63  histVertex_bunch_ = new TH1I("histoVertex","Bunchcrossings",maxbunch_-minbunch_+1,minbunch_,maxbunch_+1);
64 
65  // PCaloHit
66  histPCaloHit_bunch_ = new TH1I("histoPCaloHit","Bunchcrossings",maxbunch_-minbunch_+1,minbunch_,maxbunch_+1);
67 
68  // PSimHit
69  histPSimHit_bunchSignal_TrackerHitsTECHighTof_ = new TH1I("histoPSimHitTrackerHitsTECHighTofSignal","Bunchcrossings",maxbunch_-minbunch_+1,minbunch_,maxbunch_+1);
70  histPSimHit_bunchPileups_TrackerHitsTECHighTof_ = new TH1I("histoPSimHitTrackerHitsTECHighTofPileups","Bunchcrossings",maxbunch_-minbunch_+1,minbunch_,maxbunch_+1);
71  histPSimHit_bunchSignal_MuonCSCHits_ = new TH1I("histoPSimHitMuonCSCHitsSignal","Bunchcrossings",maxbunch_-minbunch_+1,minbunch_,maxbunch_+1);
72  histPSimHit_bunchPileups_MuonCSCHits_ = new TH1I("histoPSimHitMuonCSCHitsPileups","Bunchcrossings",maxbunch_-minbunch_+1,minbunch_,maxbunch_+1);
73 
74  int bsp = 25;//bunchspace
75  tofhist_ = new TH1I ("TrackerHit_Tof_bcr","TrackerHit_ToF",100,float(bsp*minbunch_),float(bsp*maxbunch_)+50.);
76  tofhist_sig_ = new TH1I("SignalTrackerHit_Tof_bcr","TrackerHit_ToF",100,float(bsp*minbunch_),float(bsp*maxbunch_)+50.);
77 
78 
79  // HepMCProduct
80  histHepMCProduct_bunch_ = new TH1I("histoHepMCProduct","Bunchcrossings",maxbunch_-minbunch_+1,minbunch_,maxbunch_+1);
81 
82  // Tokens
83 
84  edm::InputTag tag = edm::InputTag("mix","g4SimHits");
85 
86  SimTrackToken_ = consumes<CrossingFrame<SimTrack>>(tag);
87  SimVertexToken_ = consumes<CrossingFrame<SimVertex>>(tag);
88 
89  tag = edm::InputTag("mix","g4SimHitsTrackerHitsTECHighTof");
90  TrackerToken0_ = consumes<CrossingFrame<PSimHit>>(tag);
91 
92  tag = edm::InputTag("mix","g4SimHitsEcalHitsEB");
93  CaloToken1_ = consumes<CrossingFrame<PCaloHit>>(tag);
94 
95  tag = edm::InputTag("mix","g4SimHitsMuonCSCHits");
96  MuonToken_ = consumes<CrossingFrame<PSimHit>>(tag);
97 
98  tag = edm::InputTag("mix","generatorSmeared");
99  HepMCToken_ = consumes<CrossingFrame<edm::HepMCProduct>>(tag);
100 
101 
102 }
T getParameter(std::string const &) const
TH1I * histPSimHit_bunchPileups_TrackerHitsTECHighTof_
TH1I * histPSimHit_bunchSignal_MuonCSCHits_
TH1I * histPSimHit_bunchPileups_MuonCSCHits_
edm::EDGetTokenT< CrossingFrame< PSimHit > > TrackerToken0_
edm::EDGetTokenT< CrossingFrame< SimTrack > > SimTrackToken_
TH1I * histPSimHit_bunchSignal_TrackerHitsTECHighTof_
edm::EDGetTokenT< CrossingFrame< PSimHit > > MuonToken_
edm::EDGetTokenT< CrossingFrame< PCaloHit > > CaloToken1_
edm::EDGetTokenT< CrossingFrame< SimVertex > > SimVertexToken_
edm::EDGetTokenT< CrossingFrame< edm::HepMCProduct > > HepMCToken_
TestMixedSource::~TestMixedSource ( )

Definition at line 105 of file TestMixedSource.cc.

References gather_cfg::cout.

106 { std::cout << " Destructor TestMixed" << std::endl;
107 
108 }
tuple cout
Definition: gather_cfg.py:121

Member Function Documentation

void TestMixedSource::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivatevirtual

Implements edm::EDAnalyzer.

Definition at line 117 of file TestMixedSource.cc.

References a, b, MixCollection< T >::MixItr::bunch(), EnergyCorrector::c, CaloToken1_, cuy::col, gather_cfg::cout, ztail::d, alignCSCRings::e, edm::Event::getByToken(), MixCollection< T >::MixItr::getTrigger(), HepMCToken_, histHepMCProduct_bunch_, histPCaloHit_bunch_, histPSimHit_bunchPileups_MuonCSCHits_, histPSimHit_bunchPileups_TrackerHitsTECHighTof_, histPSimHit_bunchSignal_MuonCSCHits_, histPSimHit_bunchSignal_TrackerHitsTECHighTof_, histTrack_bunchPileups_, histTrack_bunchSignal_, histVertex_bunch_, MuonToken_, outputFile, edm::Handle< T >::product(), SimTrackToken_, SimVertexToken_, AlCaHLTBitMon_QueryRunRegistry::string, tofhist_, tofhist_sig_, and TrackerToken0_.

118 {
119  // test SimTracks
120  //----------------------
122  bool gotTracks = iEvent.getByToken(SimTrackToken_,cf_simtrack);
123  if (!gotTracks) outputFile<<" Could not read SimTracks!!!!"
124  << " Please, check if the object SimTracks has been declared in the"
125  << " MixingModule configuration file."<<std::endl;
126 
127  if (gotTracks) {
128  outputFile<<"\n=================== Starting SimTrack access ==================="<<std::endl;
129 
130  std::auto_ptr<MixCollection<SimTrack> > col1(new MixCollection<SimTrack>(cf_simtrack.product()));
132  int count1=0;
133  std::cout <<" \nWe got "<<col1->sizeSignal()<<" signal tracks and "<<col1->sizePileup()<<" pileup tracks, total: "<<col1->size()<<std::endl;
134  for (cfi1=col1->begin(); cfi1!=col1->end();cfi1++) {
135  //std::cout << " BUNCH cfi1.bunch() = " << cfi1.bunch() << std::endl;
136  if (cfi1.getTrigger()==0){
137  histTrack_bunchPileups_->Fill(cfi1.bunch());
138  }
139 
140  if (cfi1.getTrigger()==1){
141  histTrack_bunchSignal_->Fill(cfi1.bunch());
142  }
143 
144 
145  int a = count1%4;
146  if (a==3){
147  outputFile<<" SimTrack "<<count1<<" has genpart index "<<cfi1->genpartIndex()<<" vertex Index "<<cfi1->vertIndex() <<" bunchcr "<<cfi1.bunch()<<" trigger "<<cfi1.getTrigger()<<", from EncodedEventId: "<<cfi1->eventId().bunchCrossing() <<" "<<cfi1->eventId().event() <<std::endl;
148  }
149  count1++;
150  }
151  }
152 
153 
154  // test SimVertices
155  //---------------------
157  bool gotSimVertex = iEvent.getByToken(SimVertexToken_,cf_simvtx);
158  if (!gotSimVertex) outputFile<<" Could not read Simvertices !!!!"<<std::endl;
159  else {
160  outputFile<<"\n=================== Starting SimVertex access ==================="<<std::endl;
161  std::auto_ptr<MixCollection<SimVertex> > col2(new MixCollection<SimVertex>(cf_simvtx.product()));
163  int count2=0;
164  outputFile <<" \nWe got "<<col2->sizeSignal()<<" signal vertices and "<<col2->sizePileup()<<" pileup vertices, total: "<<col2->size()<<std::endl;
165  for (cfi2=col2->begin(); cfi2!=col2->end();cfi2++) {
166  histVertex_bunch_->Fill(cfi2.bunch());
167  int b = count2%4;
168  if (count2 == 0 || b==3){
169  //outputFile<<" SimVertex "<<count2<<" has parent index "<<cfi2->parentIndex()<<" bunchcr "<<cfi2.bunch()<<" trigger "<<cfi2.getTrigger()<<", from EncodedEventId: "<<cfi2->eventId().bunchCrossing() <<" "<<cfi2->eventId().event() <<std::endl;
170  }
171  //SimVertex myvtx=(*cfi2);
172  //outputFile<<"Same with op*: "<<count2<<" has parent index "<<myvtx.parentIndex()<<" bunchcr "<<cfi2.bunch()<<" trigger "<<cfi2.getTrigger()<<", from EncodedEventId: "<<myvtx.eventId().bunchCrossing() <<" "<<myvtx.eventId().event() <<std::endl;
173  count2++;
174  }
175  }
176 
177 
178  //test HepMCProducts
179  //------------------------------------
181  bool gotHepMCP = iEvent.getByToken(HepMCToken_,cf_hepmc);
182  if (!gotHepMCP) std::cout<<" Could not read HepMCProducts!!!!"<<std::endl;
183  else {
184  outputFile<<"\n=================== Starting HepMCProduct access ==================="<<std::endl;
185  std::auto_ptr<MixCollection<edm::HepMCProduct> > colhepmc(new MixCollection<edm::HepMCProduct>(cf_hepmc.product()));
187 
188  int count3=0;
189  outputFile <<" \nWe got "<<colhepmc->sizeSignal()<<" signal hepmc products and "<<colhepmc->sizePileup()<<" pileup hepmcs, total: "<<colhepmc->size()<<std::endl;
190  for (cfihepmc=colhepmc->begin(); cfihepmc!=colhepmc->end();cfihepmc++) {
191  histHepMCProduct_bunch_->Fill(cfihepmc.bunch());
192  int c = count3%4;
193  if (count3==0 || c==3){
194  //outputFile<<" edm::HepMCProduct "<<count3<<" has event number "<<cfihepmc->GetEvent()->event_number()<<", "<< cfihepmc->GetEvent()->particles_size()<<" particles and "<<cfihepmc->GetEvent()->vertices_size()<<" vertices, bunchcr= "<<cfihepmc.bunch()<<" trigger= "<<cfihepmc.getTrigger() <<" sourcetype= "<<cfihepmc.getSourceType()<<std::endl;
195  }
196  HepMCProduct myprod=colhepmc->getObject(count3);
197  //outputFile<<"same with getObject:hepmc product "<<count3<<" has event number "<<myprod.GetEvent()->event_number()<<", "<<myprod.GetEvent()->particles_size()<<" particles and "<<myprod.GetEvent()->vertices_size()<<" vertices"<<std::endl;
198  count3++;
199  }
200  }
201 
202 
203  // test CaloHits
204  //--------------------------
205  const std::string subdetcalo("g4SimHitsEcalHitsEB");
207  bool gotPCaloHit = iEvent.getByToken(CaloToken1_,cf_calo);
208  if (!gotPCaloHit) outputFile<<" Could not read CaloHits with label "<<subdetcalo<<"!!!!"<<std::endl;
209  else {
210  outputFile<<"\n\n=================== Starting CaloHit access, subdet "<<subdetcalo<<" ==================="<<std::endl;
211  std::auto_ptr<MixCollection<PCaloHit> > colcalo(new MixCollection<PCaloHit>(cf_calo.product()));
212  //outputFile<<*(colcalo.get())<<std::endl;
214  int count4=0;
215  for (cficalo=colcalo->begin(); cficalo!=colcalo->end();cficalo++) {
216  histPCaloHit_bunch_->Fill(cficalo.bunch());
217  int d = count4%4;
218  if (count4==0 || d==3){
219  //outputFile<<" CaloHit "<<count4<<" has tof "<<cficalo->time()<<" trackid "<<cficalo->geantTrackId() <<" bunchcr "<<cficalo.bunch()<<" trigger "<<cficalo.getTrigger()<<", from EncodedEventId: "<<cficalo->eventId().bunchCrossing()<<" " <<cficalo->eventId().event() <<std::endl;
220  }
221  count4++;
222  }
223  }
224 
225 
226  // test PSimHit for one particular subdet
227  //---------------------------------------
228 
229 
230  const std::string subdet("g4SimHitsTrackerHitsTECHighTof");
232  bool gotPSimHit = iEvent.getByToken(TrackerToken0_,cf_simhit);
233  if (!gotPSimHit) outputFile<<" Could not read SimHits with label "<<subdet<<"!!!!"<<std::endl;
234  else {
235  outputFile<<"\n\n=================== Starting SimHit access, subdet "<<subdet<<" ==================="<<std::endl;
236 
237  std::auto_ptr<MixCollection<PSimHit> > col(new MixCollection<PSimHit>(cf_simhit.product()));
238  //outputFile<<*(col.get())<<std::endl;
240  int count5=0;
241  for (cfi=col->begin(); cfi!=col->end();cfi++) {
242 
243  // Signal
244  if (cfi.getTrigger()==1){
246  tofhist_sig_->Fill(cfi->timeOfFlight());
247  }
248 
249  // Pileups
250  if (cfi.getTrigger()==0){
252  std::cout << " cfi->timeOfFlight() = " << cfi->timeOfFlight() << std::endl;
253  tofhist_->Fill(cfi->timeOfFlight());
254  }
255 
256  int e = count5%4;
257  if (e==3){
258  outputFile<<" Hit "<<count5<<" has tof "<<cfi->timeOfFlight()<<" trackid "<<cfi->trackId() <<" bunchcr "<<cfi.bunch()<<" trigger "<<cfi.getTrigger()<<", from EncodedEventId: "<<cfi->eventId().bunchCrossing()<<" " <<cfi->eventId().event() <<" bcr from MixCol "<<cfi.bunch()<<std::endl;
259  }
260  count5++;
261  }
262  }
263 
264  const std::string subdet1("g4SimHitsMuonCSCHits");
266  bool gotPSimHit1 = iEvent.getByToken(MuonToken_,cf_simhit1);
267  if (!gotPSimHit1) outputFile<<" Could not read SimHits with label "<<subdet1<<"!!!!"<<std::endl;
268  else {
269  outputFile<<"\n\n=================== Starting SimHit access, subdet "<<subdet1<<" ==================="<<std::endl;
270 
271  std::auto_ptr<MixCollection<PSimHit> > col(new MixCollection<PSimHit>(cf_simhit1.product()));
272  //outputFile<<*(col.get())<<std::endl;
274  int count5=0;
275  for (cfi=col->begin(); cfi!=col->end();cfi++) {
276 
277  if (cfi.getTrigger()==1) histPSimHit_bunchSignal_MuonCSCHits_->Fill(cfi.bunch());
278 
279  if (cfi.getTrigger()==0) histPSimHit_bunchPileups_MuonCSCHits_->Fill(cfi.bunch());
280 
281  int e = count5%4;
282  if (e==3){
283  outputFile<<" Hit "<<count5<<" has tof "<<cfi->timeOfFlight()<<" trackid "<<cfi->trackId() <<" bunchcr "<<cfi.bunch()<<" trigger "<<cfi.getTrigger()<<", from EncodedEventId: "<<cfi->eventId().bunchCrossing()<<" " <<cfi->eventId().event() <<" bcr from MixCol "<<cfi.bunch()<<std::endl;
284  }
285  count5++;
286  }
287  }
288 
289 
290 
291 }
TH1I * histPSimHit_bunchPileups_TrackerHitsTECHighTof_
TH1I * histPSimHit_bunchSignal_MuonCSCHits_
TH1I * histPSimHit_bunchPileups_MuonCSCHits_
edm::EDGetTokenT< CrossingFrame< PSimHit > > TrackerToken0_
edm::EDGetTokenT< CrossingFrame< SimTrack > > SimTrackToken_
TH1I * histPSimHit_bunchSignal_TrackerHitsTECHighTof_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:464
edm::EDGetTokenT< CrossingFrame< PSimHit > > MuonToken_
bool getTrigger() const
Definition: MixCollection.h:90
tuple d
Definition: ztail.py:151
edm::EDGetTokenT< CrossingFrame< PCaloHit > > CaloToken1_
edm::EDGetTokenT< CrossingFrame< SimVertex > > SimVertexToken_
T const * product() const
Definition: Handle.h:81
double b
Definition: hdecay.h:120
std::ofstream outputFile
double a
Definition: hdecay.h:121
edm::EDGetTokenT< CrossingFrame< edm::HepMCProduct > > HepMCToken_
tuple cout
Definition: gather_cfg.py:121
int col
Definition: cuy.py:1008
void TestMixedSource::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 296 of file TestMixedSource.cc.

References gather_cfg::cout, and outputFile.

297 {
298  outputFile.open("test.log");
299  if (!outputFile.is_open())
300  {
301  std::cout << "Unable to open file!" << std::endl;
302  }
303 
304 }
std::ofstream outputFile
tuple cout
Definition: gather_cfg.py:121
void TestMixedSource::endJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 308 of file TestMixedSource.cc.

References gather_cfg::cout, fileName_, histFile_, histHepMCProduct_bunch_, histPCaloHit_bunch_, histPSimHit_bunchPileups_MuonCSCHits_, histPSimHit_bunchPileups_TrackerHitsTECHighTof_, histPSimHit_bunchSignal_MuonCSCHits_, histPSimHit_bunchSignal_TrackerHitsTECHighTof_, histTrack_bunchPileups_, histTrack_bunchSignal_, histVertex_bunch_, outputFile, lumiQTWidget::t, tofhist_, and tofhist_sig_.

308  {
309 
310  outputFile.close();
311 
312  char t[30];
313  sprintf(t,"%s",fileName_.c_str());
314  std::cout << " fileName = " << t << std::endl;
315  histFile_=new TFile(t,"RECREATE");
316  histTrack_bunchPileups_->Write();
317  histTrack_bunchSignal_->Write();
318  histVertex_bunch_->Write();
319  histPCaloHit_bunch_->Write();
322  tofhist_sig_->Write();
323  tofhist_->Write();
326  histHepMCProduct_bunch_->Write();
327  histFile_->Write();
328  histFile_->Close();
329 
330 }
TH1I * histPSimHit_bunchPileups_TrackerHitsTECHighTof_
TH1I * histPSimHit_bunchSignal_MuonCSCHits_
TH1I * histPSimHit_bunchPileups_MuonCSCHits_
TH1I * histPSimHit_bunchSignal_TrackerHitsTECHighTof_
std::ofstream outputFile
tuple cout
Definition: gather_cfg.py:121

Member Data Documentation

int edm::TestMixedSource::bunchcr_
private

Definition at line 59 of file TestMixedSource.h.

edm::EDGetTokenT<CrossingFrame<PCaloHit> > edm::TestMixedSource::CaloToken1_
private

Definition at line 78 of file TestMixedSource.h.

Referenced by analyze(), and TestMixedSource().

std::string edm::TestMixedSource::fileName_
private

Definition at line 58 of file TestMixedSource.h.

Referenced by endJob().

edm::EDGetTokenT<CrossingFrame<edm::HepMCProduct> > edm::TestMixedSource::HepMCToken_
private

Definition at line 82 of file TestMixedSource.h.

Referenced by analyze(), and TestMixedSource().

TFile* edm::TestMixedSource::histFile_
private

Definition at line 73 of file TestMixedSource.h.

Referenced by endJob().

TH1I* edm::TestMixedSource::histHepMCProduct_bunch_
private

Definition at line 72 of file TestMixedSource.h.

Referenced by analyze(), endJob(), and TestMixedSource().

TH1I* edm::TestMixedSource::histPCaloHit_bunch_
private

Definition at line 65 of file TestMixedSource.h.

Referenced by analyze(), endJob(), and TestMixedSource().

TH1I* edm::TestMixedSource::histPSimHit_bunchPileups_MuonCSCHits_
private

Definition at line 71 of file TestMixedSource.h.

Referenced by analyze(), endJob(), and TestMixedSource().

TH1I* edm::TestMixedSource::histPSimHit_bunchPileups_TrackerHitsTECHighTof_
private

Definition at line 67 of file TestMixedSource.h.

Referenced by analyze(), endJob(), and TestMixedSource().

TH1I* edm::TestMixedSource::histPSimHit_bunchSignal_MuonCSCHits_
private

Definition at line 70 of file TestMixedSource.h.

Referenced by analyze(), endJob(), and TestMixedSource().

TH1I* edm::TestMixedSource::histPSimHit_bunchSignal_TrackerHitsTECHighTof_
private

Definition at line 66 of file TestMixedSource.h.

Referenced by analyze(), endJob(), and TestMixedSource().

TH1I* edm::TestMixedSource::histTrack_bunchPileups_
private

Definition at line 62 of file TestMixedSource.h.

Referenced by analyze(), endJob(), and TestMixedSource().

TH1I* edm::TestMixedSource::histTrack_bunchSignal_
private

Definition at line 63 of file TestMixedSource.h.

Referenced by analyze(), endJob(), and TestMixedSource().

TH1I* edm::TestMixedSource::histVertex_bunch_
private

Definition at line 64 of file TestMixedSource.h.

Referenced by analyze(), endJob(), and TestMixedSource().

int edm::TestMixedSource::maxbunch_
private

Definition at line 61 of file TestMixedSource.h.

Referenced by TestMixedSource().

int edm::TestMixedSource::minbunch_
private

Definition at line 60 of file TestMixedSource.h.

Referenced by TestMixedSource().

edm::EDGetTokenT<CrossingFrame<PSimHit> > edm::TestMixedSource::MuonToken_
private

Definition at line 76 of file TestMixedSource.h.

Referenced by analyze(), and TestMixedSource().

std::ofstream edm::TestMixedSource::outputFile
private

Definition at line 57 of file TestMixedSource.h.

Referenced by analyze(), beginJob(), and endJob().

edm::EDGetTokenT<CrossingFrame<SimTrack> > edm::TestMixedSource::SimTrackToken_
private

Definition at line 80 of file TestMixedSource.h.

Referenced by analyze(), and TestMixedSource().

edm::EDGetTokenT<CrossingFrame<SimVertex> > edm::TestMixedSource::SimVertexToken_
private

Definition at line 81 of file TestMixedSource.h.

Referenced by analyze(), and TestMixedSource().

TH1I* edm::TestMixedSource::tofhist_
private

Definition at line 68 of file TestMixedSource.h.

Referenced by analyze(), endJob(), and TestMixedSource().

TH1I* edm::TestMixedSource::tofhist_sig_
private

Definition at line 69 of file TestMixedSource.h.

Referenced by analyze(), endJob(), and TestMixedSource().

edm::EDGetTokenT<CrossingFrame<PSimHit> > edm::TestMixedSource::TrackerToken0_
private

Definition at line 75 of file TestMixedSource.h.

Referenced by analyze(), and TestMixedSource().