Changes in / [5528bfe:f25215c] in git
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesClasses.cc
r5528bfe rf25215c 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
r5528bfe rf25215c 373 373 374 374 UInt_t TauTag; // 0 or 1 for a jet that has been tagged as a tau 375 Float_t TauWeight; // probability for jet to be identified as tau 375 376 376 377 Int_t Charge; // tau charge … … 562 563 563 564 UInt_t TauTag; 565 Float_t TauWeight; 564 566 565 567 Float_t Eem; -
modules/TauTagging.cc
r5528bfe rf25215c 255 255 256 256 // apply an efficency formula 257 jet->TauTag |= (gRandom->Uniform() <= formula->Eval(pt, eta, phi, e)) << fBitNumber; 258 257 Double_t eff=formula->Eval(pt, eta, phi, e); 258 jet->TauTag |= (gRandom->Uniform() <= eff) << fBitNumber; 259 jet->TauWeight = eff; 260 259 261 // set tau charge 260 262 jet->Charge = charge; -
modules/TreeWriter.cc
r5528bfe rf25215c 651 651 652 652 entry->TauTag = candidate->TauTag; 653 entry->TauWeight = candidate->TauWeight; 653 654 654 655 entry->Charge = candidate->Charge;
Note:
See TracChangeset
for help on using the changeset viewer.