Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:33:16

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 pfTauBenchmarkElecRejection = cms.EDAnalyzer("PFTauElecRejectionBenchmarkAnalyzer",
0004     OutputFile = cms.untracked.string('tauBenchmarkElecRejection.root'),
0005     InputTruthLabel = cms.InputTag('generatorSmeared'),
0006     BenchmarkLabel = cms.string('PFTauElecRejection'), 
0007     minRecoPt = cms.double(15.0),
0008     maxRecoAbsEta = cms.double(2.5),
0009     minMCPt = cms.double(10.0),
0010     maxMCAbsEta = cms.double(2.5),
0011     maxDeltaR = cms.double(0.3),
0012     PFTauProducer = cms.InputTag('shrinkingConePFTauProducer'), 
0013     PFTauDiscriminatorByIsolationProducer = cms.InputTag('shrinkingConePFTauDiscriminationByIsolation'),
0014     PFTauDiscriminatorAgainstElectronProducer = cms.InputTag('shrinkingConePFTauDiscriminationAgainstElectron'),
0015     ApplyEcalCrackCut = cms.bool(True),
0016     GenMatchObjectLabel = cms.string('tau') #  match with hadronic 'tau' or electron "e"
0017 )