- Timestamp:
- Jul 28, 2015, 3:15:14 PM (9 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 4f558c7
- Parents:
- d1942df
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/PileUpJetID.cc
rd1942df r84edab9 57 57 fUseConstituents = GetInt("UseConstituents", 0); 58 58 59 60 /*61 Double_t fMeanSqDeltaRMaxBarrel; // |eta| < 1.562 Double_t fBetaMinBarrel; // |eta| < 2.563 Double_t fMeanSqDeltaRMaxEndcap; // 1.5 < |eta| < 4.064 Double_t fBetaMinEndcap; // 1.5 < |eta| < 4.065 Double_t fMeanSqDeltaRMaxForward; // |eta| > 4.066 */67 68 59 fMeanSqDeltaRMaxBarrel = GetDouble("MeanSqDeltaRMaxBarrel",0.1); 69 60 fBetaMinBarrel = GetDouble("BetaMinBarrel",0.1); … … 74 65 fNeutralPTMin = GetDouble("NeutralPTMin", 2.0); 75 66 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 86 67 fAverageEachTower = false; // for timing 87 68 … … 91 72 fItJetInputArray = fJetInputArray->MakeIterator(); 92 73 93 94 // cout << "BeforE SCZ additions in init" << endl;95 // cout << GetString("TrackInputArray", "ParticlePropagator/tracks") << endl;96 // cout << GetString("EFlowTrackInputArray", "ParticlePropagator/tracks") << endl;97 98 74 fTrackInputArray = ImportArray(GetString("TrackInputArray", "ParticlePropagator/tracks")); 99 75 fItTrackInputArray = fTrackInputArray->MakeIterator(); … … 102 78 fItNeutralInputArray = fNeutralInputArray->MakeIterator(); 103 79 104 105 80 // create output array(s) 106 81 … … 108 83 109 84 fNeutralsInPassingJets = ExportArray(GetString("NeutralsInPassingJets","eflowtowers")); 110 111 112 // cout << " end of INIT " << endl;113 85 114 86 } … … 130 102 void PileUpJetID::Process() 131 103 { 132 // cout << "start of process" << endl;133 134 104 Candidate *candidate, *constituent; 135 105 TLorentzVector momentum, area; 136 106 137 // cout << "BeforE SCZ additions in process" << endl;138 139 // SCZ140 107 Candidate *trk; 141 108
Note:
See TracChangeset
for help on using the changeset viewer.