CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ecalDrivenElectronSeedsParameters_cff.py
Go to the documentation of this file.
2 
3 ecalDrivenElectronSeedsParameters = cms.PSet(
4 
5  # steering
6  fromTrackerSeeds = cms.bool(True),
7  initialSeeds = cms.InputTag("newCombinedSeeds"),
8  preFilteredSeeds = cms.bool(False),
9  useRecoVertex = cms.bool(False),
10  vertices = cms.InputTag("offlinePrimaryVerticesWithBS"),
11  beamSpot = cms.InputTag("offlineBeamSpot"),
12  dynamicPhiRoad = cms.bool(True),
13  searchInTIDTEC = cms.bool(True), ## possibility to inhibit extended forward coverage
14 
15  # specify where to get the hits from
16  measurementTrackerName = cms.string(""),
17 
18  # SC filtering
19  SCEtCut = cms.double(4.0),
20 
21  # H/E
22  applyHOverECut = cms.bool(True),
23  hOverEConeSize = cms.double(0.15),
24  #maxHOverE = cms.double(0.1),
25  maxHOverEBarrel = cms.double(0.15),
26  maxHOverEEndcaps = cms.double(0.15),
27  maxHBarrel = cms.double(0.0),
28  maxHEndcaps = cms.double(0.0),
29  # H/E rechits
30  hcalRecHits = cms.InputTag("hbhereco"), # OBSOLETE
31  hOverEHBMinE = cms.double(0.7), # OBSOLETE
32  hOverEHFMinE = cms.double(0.8), # OBSOLETE
33  # H/E towers
34  hcalTowers = cms.InputTag("towerMaker"),
35  hOverEPtMin = cms.double(0.),
36 
37  # r/z windows
38  nSigmasDeltaZ1 = cms.double(5.), ## in case beam spot is used for the matching
39  deltaZ1WithVertex = cms.double(25.), ## in case reco vertex is used for the matching
40  z2MinB = cms.double(-0.09), ## barrel
41  z2MaxB = cms.double(0.09), ## barrel
42  r2MinF = cms.double(-0.15), ## forward
43  r2MaxF = cms.double(0.15), ## forward
44  rMinI = cms.double(-0.2), ## intermediate region SC in EB and 2nd hits in PXF
45  rMaxI = cms.double(0.2), ## intermediate region SC in EB and 2nd hits in PXF
46 
47  # phi windows (dynamic)
48  LowPtThreshold = cms.double(5.0),
49  HighPtThreshold = cms.double(35.0),
50  SizeWindowENeg = cms.double(0.675),
51  DeltaPhi1Low = cms.double(0.23),
52  DeltaPhi1High = cms.double(0.08),
53 # DeltaPhi2 = cms.double(0.008),
54  DeltaPhi2B = cms.double(0.008), ## barrel
55  DeltaPhi2F = cms.double(0.012), ## forward
56 
57  # phi windows (non dynamic, overwritten in case dynamic is selected)
58  ePhiMin1 = cms.double(-0.125),
59  ePhiMax1 = cms.double(0.075),
60  pPhiMin1 = cms.double(-0.075),
61  pPhiMax1 = cms.double(0.125),
62 # PhiMin2 = cms.double(-0.002),
63 # PhiMax2 = cms.double(0.002),
64  PhiMin2B = cms.double(-0.002), ## barrel
65  PhiMax2B = cms.double(0.002), ## barrel
66  PhiMin2F = cms.double(-0.003), ## forward
67  PhiMax2F = cms.double(0.003), ## forward
68 
69 )
70