CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
piZeroAnalyzer_cfi.py
Go to the documentation of this file.
2 
3 
4 piZeroAnalysis = cms.EDAnalyzer("PiZeroAnalyzer",
5 
6  Name = cms.untracked.string('piZeroAnalysis'),
7 
8  barrelEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
9  endcapEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
10 
11 
12 
13  standAlone = cms.bool(False),
14 
15 
16  # DBE verbosity
17  Verbosity = cms.untracked.int32(0),
18  # 1 provides basic output
19  # 2 provides output of the fill step + 1
20  # 3 provides output of the store step + 2
21 
22 
23 
24 # parameters for pizero finding
25  seleXtalMinEnergy = cms.double(0.0),
26  clusSeedThr = cms.double(0.5),
27  clusPhiSize = cms.int32(3),
28  clusEtaSize = cms.int32(3),
29  ParameterLogWeighted = cms.bool(True),
30  ParameterX0 = cms.double(0.89),
31  ParameterW0 = cms.double(4.2),
32  ParameterT0_barl = cms.double(5.7),
33  selePtGammaOne = cms.double(0.9),
34  selePtGammaTwo = cms.double(0.9),
35  seleS4S9GammaOne = cms.double(0.85),
36  seleS4S9GammaTwo = cms.double(0.85),
37  selePtPi0 = cms.double(2.5),
38  selePi0Iso = cms.double(0.5),
39  selePi0BeltDR = cms.double(0.2),
40  selePi0BeltDeta = cms.double(0.05),
41  seleMinvMaxPi0 = cms.double(0.5),
42  seleMinvMinPi0 = cms.double(0.0),
43  posCalcParameters = cms.PSet(T0_barl = cms.double(5.7),
44  T0_endc = cms.double(3.1),
45  T0_endcPresh = cms.double(1.2),
46  LogWeighted = cms.bool(True),
47  W0 = cms.double(4.2),
48  X0 = cms.double(0.89)
49  ),
50 #
51  OutputMEsInRootFile = cms.bool(False),
52 
53  OutputFileName = cms.string('DQMOfflinePiZero.root'),
54 
55 
56 )