CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/DQMOffline/EGamma/python/piZeroAnalyzer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 
00004 piZeroAnalysis = cms.EDAnalyzer("PiZeroAnalyzer",
00005 
00006     Name = cms.untracked.string('piZeroAnalysis'),
00007 
00008     barrelEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
00009     endcapEcalHits = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
00010                                 
00011 
00012 
00013     standAlone = cms.bool(False),
00014 
00015                                 
00016     # DBE verbosity
00017     Verbosity = cms.untracked.int32(0),
00018                                 # 1 provides basic output
00019                                 # 2 provides output of the fill step + 1
00020                                 # 3 provides output of the store step + 2
00021                                 
00022 
00023                                 
00024 # parameters for pizero finding                                
00025     seleXtalMinEnergy = cms.double(0.0),
00026     clusSeedThr = cms.double(0.5),
00027     clusPhiSize = cms.int32(3),
00028     clusEtaSize = cms.int32(3),
00029     ParameterLogWeighted = cms.bool(True),                          
00030     ParameterX0 = cms.double(0.89),
00031     ParameterW0 = cms.double(4.2),
00032     ParameterT0_barl = cms.double(5.7),
00033     selePtGammaOne = cms.double(0.9),
00034     selePtGammaTwo = cms.double(0.9),                          
00035     seleS4S9GammaOne = cms.double(0.85),
00036     seleS4S9GammaTwo = cms.double(0.85),
00037     selePtPi0 = cms.double(2.5),
00038     selePi0Iso = cms.double(0.5),
00039     selePi0BeltDR = cms.double(0.2),
00040     selePi0BeltDeta = cms.double(0.05),
00041     seleMinvMaxPi0 = cms.double(0.5),
00042     seleMinvMinPi0 = cms.double(0.0),
00043     posCalcParameters = cms.PSet(T0_barl      = cms.double(5.7),
00044                                  T0_endc      = cms.double(3.1),        
00045                                  T0_endcPresh = cms.double(1.2),
00046                                  LogWeighted  = cms.bool(True),
00047                                  W0           = cms.double(4.2),
00048                                  X0           = cms.double(0.89)
00049                                  ),                             
00050 #                                
00051     OutputMEsInRootFile = cms.bool(False),
00052  
00053     OutputFileName = cms.string('DQMOfflinePiZero.root'),
00054 
00055 
00056 )