- Timestamp:
- May 24, 2018, 9:12:31 PM (7 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 4689481
- Parents:
- 4fd4f01 (diff), 792092a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- classes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesClasses.cc
r4fd4f01 rfbad4c7 125 125 Flavor(0), FlavorAlgo(0), FlavorPhys(0), 126 126 BTag(0), BTagAlgo(0), BTagPhys(0), 127 TauTag(0), Eem(0.0), Ehad(0.0),127 TauTag(0), TauWeight(0.0), Eem(0.0), Ehad(0.0), 128 128 DeltaEta(0.0), DeltaPhi(0.0), 129 129 Momentum(0.0, 0.0, 0.0, 0.0), … … 280 280 object.BTagPhys = BTagPhys; 281 281 object.TauTag = TauTag; 282 object.TauWeight = TauWeight; 282 283 object.Eem = Eem; 283 284 object.Ehad = Ehad; … … 404 405 BTagPhys = 0; 405 406 TauTag = 0; 407 TauWeight = 0.0; 406 408 Eem = 0.0; 407 409 Ehad = 0.0; -
classes/DelphesClasses.h
r4fd4f01 rfbad4c7 375 375 376 376 UInt_t TauTag; // 0 or 1 for a jet that has been tagged as a tau 377 Float_t TauWeight; // probability for jet to be identified as tau 377 378 378 379 Int_t Charge; // tau charge … … 563 564 564 565 UInt_t TauTag; 566 Float_t TauWeight; 565 567 566 568 Float_t Eem; -
classes/DelphesHepMCReader.cc
r4fd4f01 rfbad4c7 333 333 //--------------------------------------------------------------------------- 334 334 335 void DelphesHepMCReader::AnalyzeWeight(ExRootTreeBranch *branch) 336 { 337 Weight *element; 338 vector< double >::const_iterator itWeight; 339 340 for(itWeight = fWeight.begin(); itWeight != fWeight.end(); ++itWeight) 341 { 342 element = static_cast<Weight *>(branch->NewEntry()); 343 344 element->Weight = *itWeight; 345 } 346 } 347 348 //--------------------------------------------------------------------------- 349 335 350 void DelphesHepMCReader::AnalyzeParticle(DelphesFactory *factory, 336 351 TObjArray *allParticleOutputArray, -
classes/DelphesHepMCReader.h
r4fd4f01 rfbad4c7 59 59 TStopwatch *readStopWatch, TStopwatch *procStopWatch); 60 60 61 void AnalyzeWeight(ExRootTreeBranch *branch); 62 61 63 private: 62 64
Note:
See TracChangeset
for help on using the changeset viewer.