CMS 3D CMS Logo

ecalPiZeroTask_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ecalPiZeroTask = cms.untracked.PSet(
4  params = cms.untracked.PSet(
5  # Parameters needed for pi0 finding
6  seleXtalMinEnergy = cms.double(0.0),
7  clusSeedThr = cms.double(0.5),
8  clusEtaSize = cms.int32(3),
9  clusPhiSize = cms.int32(3),
10  selePtGammaOne = cms.double(0.9),
11  selePtGammaTwo = cms.double(0.9),
12  seleS4S9GammaOne = cms.double(0.85),
13  seleS4S9GammaTwo = cms.double(0.85),
14  selePtPi0 = cms.double(2.5),
15  selePi0Iso = cms.double(0.5),
16  selePi0BeltDR = cms.double(0.2),
17  selePi0BeltDeta = cms.double(0.05),
18  seleMinvMaxPi0 = cms.double(0.5),
19  seleMinvMinPi0 = cms.double(0.0),
20  posCalcParameters = cms.PSet(T0_barl = cms.double(5.7),
21  T0_endc = cms.double(3.1),
22  T0_endcPresh = cms.double(1.2),
23  LogWeighted = cms.bool(True),
24  W0 = cms.double(4.2),
25  X0 = cms.double(0.89)
26  ),
27  ),
28  MEs = cms.untracked.PSet(
29  Pi0MinvEB = cms.untracked.PSet(
30  path = cms.untracked.string('%(subdet)s/%(prefix)sPiZeroTask/%(prefix)sPZT%(suffix)s Pi0 Invariant Mass'),
31  kind = cms.untracked.string('TH1F'),
32  otype = cms.untracked.string('EB'),
33  btype = cms.untracked.string('User'),
34  xaxis = cms.untracked.PSet(
35  nbins = cms.untracked.int32(100),
36  low = cms.untracked.double(0.),
37  high = cms.untracked.double(0.5),
38  title = cms.untracked.string('Inv Mass [GeV]')
39  ),
40  description = cms.untracked.string('Pi0 Invariant Mass in EB')
41  ),
42  Pi0Pt1EB = cms.untracked.PSet(
43  path = cms.untracked.string('%(subdet)s/%(prefix)sPiZeroTask/%(prefix)sPZT%(suffix)s Pi0 Pt 1st most energetic photon'),
44  kind = cms.untracked.string('TH1F'),
45  otype = cms.untracked.string('EB'),
46  btype = cms.untracked.string('User'),
47  xaxis = cms.untracked.PSet(
48  nbins = cms.untracked.int32(100),
49  low = cms.untracked.double(0.),
50  high = cms.untracked.double(20.),
51  title = cms.untracked.string('1st photon Pt [GeV]')
52  ),
53  description = cms.untracked.string('Pt 1st most energetic Pi0 photon in EB')
54  ),
55  Pi0Pt2EB = cms.untracked.PSet(
56  path = cms.untracked.string('%(subdet)s/%(prefix)sPiZeroTask/%(prefix)sPZT%(suffix)s Pi0 Pt 2nd most energetic photon'),
57  kind = cms.untracked.string('TH1F'),
58  otype = cms.untracked.string('EB'),
59  btype = cms.untracked.string('User'),
60  xaxis = cms.untracked.PSet(
61  nbins = cms.untracked.int32(100),
62  low = cms.untracked.double(0.),
63  high = cms.untracked.double(20.),
64  title = cms.untracked.string('2nd photon Pt [GeV]')
65  ),
66  description = cms.untracked.string('Pt 2nd most energetic Pi0 photon in EB')
67  ),
68  Pi0PtEB = cms.untracked.PSet(
69  path = cms.untracked.string('%(subdet)s/%(prefix)sPiZeroTask/%(prefix)sPZT%(suffix)s Pi0 Pt'),
70  kind = cms.untracked.string('TH1F'),
71  otype = cms.untracked.string('EB'),
72  btype = cms.untracked.string('User'),
73  xaxis = cms.untracked.PSet(
74  nbins = cms.untracked.int32(100),
75  low = cms.untracked.double(0.),
76  high = cms.untracked.double(20.),
77  title = cms.untracked.string('Pi0 Pt [GeV]')
78  ),
79  description = cms.untracked.string('Pi0 Pt in EB')
80  ),
81  Pi0IsoEB = cms.untracked.PSet(
82  path = cms.untracked.string('%(subdet)s/%(prefix)sPiZeroTask/%(prefix)sPZT%(suffix)s Pi0 Iso'),
83  kind = cms.untracked.string('TH1F'),
84  otype = cms.untracked.string('EB'),
85  btype = cms.untracked.string('User'),
86  xaxis = cms.untracked.PSet(
87  nbins = cms.untracked.int32(50),
88  low = cms.untracked.double(0.),
89  high = cms.untracked.double(1.),
90  title = cms.untracked.string('Pi0 Iso')
91  ),
92  description = cms.untracked.string('Pi0 Iso in EB')
93  )
94  )
95 )