CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoEgamma/EgammaElectronProducers/python/ecalDrivenElectronSeedsParameters_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 ecalDrivenElectronSeedsParameters = cms.PSet(
00004 
00005     # steering
00006     fromTrackerSeeds = cms.bool(True),
00007     initialSeeds = cms.InputTag("newCombinedSeeds"),
00008     preFilteredSeeds = cms.bool(False),
00009     useRecoVertex = cms.bool(False),
00010     vertices = cms.InputTag("offlinePrimaryVerticesWithBS"),
00011     beamSpot = cms.InputTag("offlineBeamSpot"),
00012     dynamicPhiRoad = cms.bool(True),
00013     searchInTIDTEC = cms.bool(True), ##  possibility to inhibit extended forward coverage
00014 
00015     # specify where to get the hits from
00016     measurementTrackerName = cms.string(""),
00017 
00018     # SC filtering
00019     SCEtCut = cms.double(4.0),
00020 
00021     # H/E
00022     applyHOverECut = cms.bool(True),
00023     hOverEConeSize = cms.double(0.15),
00024     #maxHOverE = cms.double(0.1),
00025     maxHOverEBarrel = cms.double(0.15),
00026     maxHOverEEndcaps = cms.double(0.15),
00027     maxHBarrel = cms.double(0.0),
00028     maxHEndcaps = cms.double(0.0),
00029     # H/E rechits
00030     hcalRecHits = cms.InputTag("hbhereco"), # OBSOLETE
00031     hOverEHBMinE = cms.double(0.7),         # OBSOLETE
00032     hOverEHFMinE = cms.double(0.8),         # OBSOLETE
00033     # H/E towers
00034     hcalTowers = cms.InputTag("towerMaker"),
00035     hOverEPtMin = cms.double(0.),
00036     
00037     # r/z windows
00038     nSigmasDeltaZ1 = cms.double(5.), ## in case beam spot is used for the matching
00039     deltaZ1WithVertex = cms.double(25.), ## in case reco vertex is used for the matching
00040     z2MinB = cms.double(-0.09), ## barrel
00041     z2MaxB = cms.double(0.09), ## barrel
00042     r2MinF = cms.double(-0.15), ## forward
00043     r2MaxF = cms.double(0.15), ## forward
00044     rMinI = cms.double(-0.2), ## intermediate region SC in EB and 2nd hits in PXF
00045     rMaxI = cms.double(0.2), ## intermediate region SC in EB and 2nd hits in PXF
00046 
00047     # phi windows (dynamic)
00048     LowPtThreshold = cms.double(5.0),
00049     HighPtThreshold = cms.double(35.0),
00050     SizeWindowENeg = cms.double(0.675),
00051     DeltaPhi1Low = cms.double(0.23),
00052     DeltaPhi1High = cms.double(0.08),
00053 #    DeltaPhi2 = cms.double(0.008),
00054     DeltaPhi2B = cms.double(0.008), ## barrel
00055     DeltaPhi2F = cms.double(0.012), ## forward
00056 
00057     # phi windows (non dynamic, overwritten in case dynamic is selected)
00058     ePhiMin1 = cms.double(-0.125),
00059     ePhiMax1 = cms.double(0.075),
00060     pPhiMin1 = cms.double(-0.075),
00061     pPhiMax1 = cms.double(0.125),
00062 #    PhiMin2 = cms.double(-0.002),
00063 #    PhiMax2 = cms.double(0.002),
00064     PhiMin2B = cms.double(-0.002), ## barrel
00065     PhiMax2B = cms.double(0.002), ## barrel
00066     PhiMin2F = cms.double(-0.003), ## forward
00067     PhiMax2F = cms.double(0.003), ## forward
00068     
00069 )
00070