Fork me on GitHub

Changeset 84edab9 in git for modules


Ignore:
Timestamp:
Jul 28, 2015, 3:15:14 PM (9 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
4f558c7
Parents:
d1942df
Message:

cleaned up comments in PileUpJetID

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/PileUpJetID.cc

    rd1942df r84edab9  
    5757  fUseConstituents = GetInt("UseConstituents", 0);
    5858
    59 
    60   /*
    61   Double_t fMeanSqDeltaRMaxBarrel; // |eta| < 1.5
    62   Double_t fBetaMinBarrel; // |eta| < 2.5
    63   Double_t fMeanSqDeltaRMaxEndcap; // 1.5 < |eta| < 4.0
    64   Double_t fBetaMinEndcap; // 1.5 < |eta| < 4.0
    65   Double_t fMeanSqDeltaRMaxForward; // |eta| > 4.0
    66   */
    67 
    6859  fMeanSqDeltaRMaxBarrel = GetDouble("MeanSqDeltaRMaxBarrel",0.1);
    6960  fBetaMinBarrel = GetDouble("BetaMinBarrel",0.1);
     
    7465  fNeutralPTMin = GetDouble("NeutralPTMin", 2.0);
    7566
    76 
    77 
    78   cout << "  set MeanSqDeltaRMaxBarrel " << fMeanSqDeltaRMaxBarrel << endl;
    79   cout << "  set BetaMinBarrel " << fBetaMinBarrel << endl;
    80   cout << "  set MeanSqDeltaRMaxEndcap " << fMeanSqDeltaRMaxEndcap << endl;
    81   cout << "  set BetaMinEndcap " << fBetaMinEndcap << endl;
    82   cout << "  set MeanSqDeltaRMaxForward " << fMeanSqDeltaRMaxForward << endl;
    83 
    84 
    85 
    8667  fAverageEachTower = false; // for timing
    8768
     
    9172  fItJetInputArray = fJetInputArray->MakeIterator();
    9273
    93 
    94   //  cout << "BeforE SCZ additions in init" << endl;
    95   //  cout << GetString("TrackInputArray", "ParticlePropagator/tracks") << endl;
    96   //  cout << GetString("EFlowTrackInputArray", "ParticlePropagator/tracks") << endl;
    97 
    9874  fTrackInputArray = ImportArray(GetString("TrackInputArray", "ParticlePropagator/tracks"));
    9975  fItTrackInputArray = fTrackInputArray->MakeIterator();
     
    10278  fItNeutralInputArray = fNeutralInputArray->MakeIterator();
    10379
    104 
    10580  // create output array(s)
    10681
     
    10883
    10984  fNeutralsInPassingJets = ExportArray(GetString("NeutralsInPassingJets","eflowtowers"));
    110 
    111 
    112   //  cout << " end of INIT " << endl;
    11385
    11486}
     
    130102void PileUpJetID::Process()
    131103{
    132   //  cout << "start of process" << endl;
    133 
    134104  Candidate *candidate, *constituent;
    135105  TLorentzVector momentum, area;
    136106
    137   //  cout << "BeforE SCZ additions in process" << endl;
    138 
    139   // SCZ
    140107  Candidate *trk;
    141108
Note: See TracChangeset for help on using the changeset viewer.