Changeset 04e2040 in git
- Timestamp:
- May 17, 2021, 5:18:37 PM (3 years ago)
- Branches:
- master
- Children:
- a7bd051
- Parents:
- a52e99e
- Location:
- modules
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/Efficiency.cc
ra52e99e r04e2040 100 100 Double_t pt, eta, phi, e; 101 101 102 102 103 fItInputArray->Reset(); 103 104 while((candidate = static_cast<Candidate *>(fItInputArray->Next()))) … … 115 116 pt = candidateMomentum.Pt(); 116 117 e = candidateMomentum.E(); 117 118 118 119 // apply an efficency formula 119 120 if(gRandom->Uniform() > fFormula->Eval(pt, eta, phi, e, candidate)) continue; -
modules/TimeSmearing.cc
ra52e99e r04e2040 102 102 fItTrackInputArray->Reset(); 103 103 while((candidate = static_cast<Candidate *>(fItTrackInputArray->Next()))) 104 { // converting to meters105 104 { 105 // converting to meters 106 106 const TLorentzVector &candidateFinalPosition = candidate->Position; 107 107 const TLorentzVector &candidateMomentum = candidate->Momentum; 108 108 109 109 tf = candidateFinalPosition.T() * 1.0E-3 / c_light; 110 110 111 eta = candidateMomentum.Eta(); 111 112 energy = candidateMomentum.E(); -
modules/TrackCovariance.cc
ra52e99e r04e2040 104 104 Double_t dd0, ddz, dphi, dct, dp, dpt, dC; 105 105 106 107 106 fItInputArray->Reset(); 108 107 while((candidate = static_cast<Candidate *>(fItInputArray->Next()))) -
modules/TruthVertexFinder.cc
ra52e99e r04e2040 112 112 113 113 pt = candidateMomentum.Pt(); 114 114 115 // check whether vertex already included, if so add particle 115 116 Bool_t old_vertex=false;
Note:
See TracChangeset
for help on using the changeset viewer.