CMS 3D CMS Logo

CaloRecoTauTagInfoProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 caloRecoTauTagInfoProducer = cms.EDProducer("CaloRecoTauTagInfoProducer",
4  ECALBasicClusterpropagTrack_matchingDRConeSize = cms.double(0.015),
5  #string PVProducer = "pixelVertices"
6  PVProducer = cms.InputTag('offlinePrimaryVertices'),
7  # parameters of the considered rec. Tracks (were catched through a JetTracksAssociation object) :
8  tkminPt = cms.double(0.5),
9  tkminPixelHitsn = cms.int32(0),
10  tkminTrackerHitsn = cms.int32(3),
11  tkmaxChi2 = cms.double(100.0),
12  UsePVconstraint = cms.bool(True),
13 
14  UseTrackQuality = cms.bool(True),
15  #only used if UseTrackQuality is True
16  tkQuality = cms.string('highPurity'),
17 
18  BarrelBasicClustersSource = cms.InputTag("hybridSuperClusters", "hybridBarrelBasicClusters"),
19  EndcapBasicClustersSource = cms.InputTag("multi5x5SuperClusters", "multi5x5EndcapBasicClusters"),
20 
21  smearedPVsigmaY = cms.double(0.0015),
22  smearedPVsigmaX = cms.double(0.0015),
23  ECALBasicClusterminE = cms.double(1.0),
24  smearedPVsigmaZ = cms.double(0.005),
25  tkPVmaxDZ = cms.double(1.0), ##considered if UsePVconstraint=true
26 
27  # parameters of the considered neutral ECAL BasicClusters
28  ECALBasicClustersAroundCaloJet_DRConeSize = cms.double(0.5),
29  tkmaxipt = cms.double(0.1),
30  CaloJetTracksAssociatorProducer = cms.InputTag('ic5JetTracksAssociatorAtVertex')
31 )
32 
33