Fork me on GitHub

Changeset 16217da in git


Ignore:
Timestamp:
Nov 7, 2015, 10:48:54 AM (9 years ago)
Author:
Chase <cshimmin@…>
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.
Message:

Merge e72ee4bacd07a16f49d40e753ed688eab57b177b into 386e60f7bad9454d510ae91e3aee16900452ee37

Location:
modules
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • modules/Isolation.cc

    r386e60f r16217da  
    108108
    109109  fUsePTSum = GetBool("UsePTSum", false);
     110
     111  fUseRhoCorr = GetBool("UseRhoCorrection", false);
    110112
    111113  fClassifier->fPTMin = GetDouble("PTMin", 0.5);
     
    153155  Candidate *candidate, *isolation, *object;
    154156  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;
    156158  Int_t counter;
    157159  Double_t eta = 0.0;
     
    245247    candidate->SumPt = sumAllParticles;
    246248
    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
    248255    fOutputArray->Add(candidate);
    249256  }
  • modules/Isolation.h

    r386e60f r16217da  
    5959  Bool_t fUsePTSum;
    6060
     61  Bool_t fUseRhoCorr;
     62
    6163  IsolationClassifier *fClassifier; //!
    6264
Note: See TracChangeset for help on using the changeset viewer.