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  measurementTrackerEvent = cms.InputTag("MeasurementTrackerEvent"),
18 
19  # SC filtering
20  SCEtCut = cms.double(0.0),
21 
22  # H/E
23  applyHOverECut = cms.bool(True),
24  hOverEConeSize = cms.double(0.15),
25  #maxHOverE = cms.double(0.1),
26  maxHOverEBarrel = cms.double(0.15),
27  maxHOverEEndcaps = cms.double(0.15),
28  maxHBarrel = cms.double(0.0),
29  maxHEndcaps = cms.double(0.0),
30  # H/E rechits
31  hcalRecHits = cms.InputTag("hbhereco"), # OBSOLETE
32  hOverEHBMinE = cms.double(0.7), # OBSOLETE
33  hOverEHFMinE = cms.double(0.8), # OBSOLETE
34  # H/E towers
35  hcalTowers = cms.InputTag("towerMaker"),
36  hOverEPtMin = cms.double(0.),
37 
38  # r/z windows
39  nSigmasDeltaZ1 = cms.double(5.), ## in case beam spot is used for the matching
40  deltaZ1WithVertex = cms.double(25.), ## in case reco vertex is used for the matching
41  z2MinB = cms.double(-0.09), ## barrel
42  z2MaxB = cms.double(0.09), ## barrel
43  r2MinF = cms.double(-0.15), ## forward
44  r2MaxF = cms.double(0.15), ## forward
45  rMinI = cms.double(-0.2), ## intermediate region SC in EB and 2nd hits in PXF
46  rMaxI = cms.double(0.2), ## intermediate region SC in EB and 2nd hits in PXF
47 
48  # phi windows (dynamic)
49  LowPtThreshold = cms.double(5.0),
50  HighPtThreshold = cms.double(35.0),
51  SizeWindowENeg = cms.double(0.675),
52  DeltaPhi1Low = cms.double(0.23),
53  DeltaPhi1High = cms.double(0.08),
54 # DeltaPhi2 = cms.double(0.008),
55  DeltaPhi2B = cms.double(0.008), ## barrel
56  DeltaPhi2F = cms.double(0.012), ## forward
57 
58  # phi windows (non dynamic, overwritten in case dynamic is selected)
59  ePhiMin1 = cms.double(-0.125),
60  ePhiMax1 = cms.double(0.075),
61  pPhiMin1 = cms.double(-0.075),
62  pPhiMax1 = cms.double(0.125),
63 # PhiMin2 = cms.double(-0.002),
64 # PhiMax2 = cms.double(0.002),
65  PhiMin2B = cms.double(-0.002), ## barrel
66  PhiMax2B = cms.double(0.002), ## barrel
67  PhiMin2F = cms.double(-0.003), ## forward
68  PhiMax2F = cms.double(0.003), ## forward
69 
70 )
71