Fork me on GitHub

Changeset 04e2040 in git for modules


Ignore:
Timestamp:
May 17, 2021, 5:18:37 PM (3 years ago)
Author:
michele <michele.selvaggi@…>
Branches:
master
Children:
a7bd051
Parents:
a52e99e
Message:

remove trailing chars

Location:
modules
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • modules/Efficiency.cc

    ra52e99e r04e2040  
    100100  Double_t pt, eta, phi, e;
    101101
     102
    102103  fItInputArray->Reset();
    103104  while((candidate = static_cast<Candidate *>(fItInputArray->Next())))
     
    115116    pt = candidateMomentum.Pt();
    116117    e = candidateMomentum.E();
    117    
     118
    118119    // apply an efficency formula
    119120    if(gRandom->Uniform() > fFormula->Eval(pt, eta, phi, e, candidate)) continue;
  • modules/TimeSmearing.cc

    ra52e99e r04e2040  
    102102  fItTrackInputArray->Reset();
    103103  while((candidate = static_cast<Candidate *>(fItTrackInputArray->Next())))
    104   {    // converting to meters
    105 
     104  {
     105    // converting to meters
    106106    const TLorentzVector &candidateFinalPosition = candidate->Position;
    107107    const TLorentzVector &candidateMomentum = candidate->Momentum;
    108108
    109109    tf = candidateFinalPosition.T() * 1.0E-3 / c_light;
     110
    110111    eta = candidateMomentum.Eta();
    111112    energy = candidateMomentum.E();
  • modules/TrackCovariance.cc

    ra52e99e r04e2040  
    104104  Double_t dd0, ddz, dphi, dct, dp, dpt, dC;
    105105
    106 
    107106  fItInputArray->Reset();
    108107  while((candidate = static_cast<Candidate *>(fItInputArray->Next())))
  • modules/TruthVertexFinder.cc

    ra52e99e r04e2040  
    112112
    113113     pt = candidateMomentum.Pt();
     114     
    114115     // check whether vertex already included, if so add particle
    115116     Bool_t old_vertex=false;
Note: See TracChangeset for help on using the changeset viewer.