ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/DTDPGAnalysis/python/dtCreateSummary_cff.py
Revision: 1.1
Committed: Tue Oct 14 15:27:12 2008 UTC (16 years, 6 months ago) by battilan
Content type: text/x-python
Branch: MAIN
CVS Tags: V00-01-00, V00-00-15, V00-00-14, V00-00-13, V00-00-12, V00-00-11, V00-00-10, V00-00-09, V00-00-08, V00-00-07, V00-00-06, V00-00-05, V00-00-04, V00-00-03, V00-00-02, V00-00-01, V00-00-00, HEAD
Log Message:
Include DTDPG DQM Summaries

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 createDTDPGSummary = cms.EDAnalyzer("DTDPGCreateSummary",
4 # Histo generation flasg
5 DataIntegrityHistos = cms.untracked.bool(True),
6 DigiHistos = cms.untracked.bool(True),
7 RecoHistos = cms.untracked.bool(True),
8 ResoHistos = cms.untracked.bool(True),
9 TriggerHistos = cms.untracked.bool(True),
10 EfficiencyHistos = cms.untracked.bool(True),
11 TestPulseHistos = cms.untracked.bool(False),
12 # Input File Name
13 rootFileName = cms.untracked.string(""),
14 # Run Number
15 runNumber = cms.untracked.int32(1)
16 )
17
18 createDTDPGWheelSummary = cms.EDAnalyzer("DTDPGCreateWheelSummary",
19 # Input File Name
20 rootFileName = cms.untracked.string(""),
21 # Run Number
22 runNumber = cms.untracked.int32(1)
23 )
24
25 createSummary = cms.Sequence( createDTDPGSummary + createDTDPGWheelSummary)