- Timestamp:
- Jan 20, 2020, 2:29:19 PM (5 years ago)
- Branches:
- Timing
- Children:
- 9867b49
- Parents:
- 83ee320 (diff), 9c1d14a (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. - git-author:
- Michele Selvaggi <michele.selvaggi@…> (01/20/20 14:29:19)
- git-committer:
- GitHub <noreply@…> (01/20/20 14:29:19)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/Efficiency.cc
r83ee320 raf6ce6a 95 95 { 96 96 Candidate *candidate; 97 Double_t pt, eta, phi, e, r, z,d0, dz, ctgTheta;97 Double_t pt, eta, phi, e, d0, dz, ctgTheta; 98 98 99 99 fItInputArray->Reset(); … … 102 102 const TLorentzVector &candidatePosition = candidate->Position; 103 103 const TLorentzVector &candidateMomentum = candidate->Momentum; 104 r = candidatePosition.Perp();105 z = candidatePosition.Z();106 104 eta = candidatePosition.Eta(); 107 105 phi = candidatePosition.Phi(); … … 113 111 114 112 // apply an efficency formula 115 if(gRandom->Uniform() > fFormula->Eval(pt, eta, phi, e, r, z,d0, dz, ctgTheta)) continue;113 if(gRandom->Uniform() > fFormula->Eval(pt, eta, phi, e, d0, dz, ctgTheta)) continue; 116 114 117 115 fOutputArray->Add(candidate);
Note:
See TracChangeset
for help on using the changeset viewer.