Fork me on GitHub

Ignore:
Timestamp:
Dec 21, 2014, 12:07:11 PM (10 years ago)
Author:
Pavel Demin <pavel.demin@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
38bf1ae
Parents:
1d1f6a4
Message:

fix formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/TrackCountingBTagging.cc

    r1d1f6a4 r6cdc544  
    6565  fBitNumber = GetInt("BitNumber", 0);
    6666
    67   fPtMin     = GetDouble("TrackPtMin", 1.0);
    68   fDeltaR    = GetDouble("DeltaR", 0.3);
    69   fIPmax     = GetDouble("TrackIPMax", 2.0);
     67  fPtMin = GetDouble("TrackPtMin", 1.0);
     68  fDeltaR = GetDouble("DeltaR", 0.3);
     69  fIPmax = GetDouble("TrackIPMax", 2.0);
    7070
    71   fSigMin    = GetDouble("SigMin", 6.5);
    72   fNtracks   = GetInt("Ntracks", 3);
     71  fSigMin = GetDouble("SigMin", 6.5);
     72  fNtracks = GetInt("Ntracks", 3);
    7373
    7474  // import input array(s)
     
    124124      tpy = trkMomentum.Py();
    125125
    126       xd   = track->Xd;
    127       yd   = track->Yd;
    128       dxy  = TMath::Abs(track->Dxy);
     126      xd = track->Xd;
     127      yd = track->Yd;
     128      dxy = TMath::Abs(track->Dxy);
    129129      ddxy = track->SDxy;
    130130
    131131      if(tpt < fPtMin) continue;
    132       if(dr  > fDeltaR) continue;
     132      if(dr > fDeltaR) continue;
    133133      if(dxy > fIPmax) continue;
    134134
    135       sign  = (jpx*xd + jpy*yd > 0.0) ? 1 : -1;
     135      sign = (jpx*xd + jpy*yd > 0.0) ? 1 : -1;
    136136
    137       ip  = sign*dxy;
     137      ip = sign*dxy;
    138138      sip = ip / TMath::Abs(ddxy);
    139139
Note: See TracChangeset for help on using the changeset viewer.