Changeset 16217da in git
- Timestamp:
- Nov 7, 2015, 10:48:54 AM (9 years ago)
- Parents:
- 386e60f (diff), e72ee4b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- modules
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/Isolation.cc
r386e60f r16217da 108 108 109 109 fUsePTSum = GetBool("UsePTSum", false); 110 111 fUseRhoCorr = GetBool("UseRhoCorrection", false); 110 112 111 113 fClassifier->fPTMin = GetDouble("PTMin", 0.5); … … 153 155 Candidate *candidate, *isolation, *object; 154 156 TObjArray *isolationArray; 155 Double_t sumCharged, sumNeutral, sumAllParticles, sumChargedPU, sumDBeta, ratioDBeta, sumRhoCorr, ratioRhoCorr ;157 Double_t sumCharged, sumNeutral, sumAllParticles, sumChargedPU, sumDBeta, ratioDBeta, sumRhoCorr, ratioRhoCorr, sum, ratio; 156 158 Int_t counter; 157 159 Double_t eta = 0.0; … … 245 247 candidate->SumPt = sumAllParticles; 246 248 247 if((fUsePTSum && sumDBeta > fPTSumMax) || (!fUsePTSum && ratioDBeta > fPTRatioMax)) continue; 249 sum = (fUseRhoCorr) ? sumRhoCorr : sumDBeta; 250 if(fUsePTSum && sum > fPTSumMax) continue; 251 252 ratio = (fUseRhoCorr) ? ratioRhoCorr : ratioDBeta; 253 if(!fUsePTSum && ratio > fPTRatioMax) continue; 254 248 255 fOutputArray->Add(candidate); 249 256 } -
modules/Isolation.h
r386e60f r16217da 59 59 Bool_t fUsePTSum; 60 60 61 Bool_t fUseRhoCorr; 62 61 63 IsolationClassifier *fClassifier; //! 62 64
Note:
See TracChangeset
for help on using the changeset viewer.