ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/DTDPGAnalysis/python/dtCreateSummaries_cff.py
Revision: 1.3
Committed: Fri Dec 19 16:36:40 2008 UTC (16 years, 4 months ago) by cerminar
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
Changes since 1.2: +1 -10 lines
Log Message:
Read ROS in RO from the histos

File Contents

# User Rev Content
1 battilan 1.1 import FWCore.ParameterSet.Config as cms
2    
3     createDTDPGDQMSummary = 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     createDTDPGDQMWheelSummary = cms.EDAnalyzer("DTDPGCreateWheelSummary",
19     # Input File Name
20     rootFileName = cms.untracked.string(""),
21     # Run Number
22     runNumber = cms.untracked.int32(1)
23     )
24    
25     createDTDPGAnalyzerSummary = cms.EDAnalyzer("DTDPGCreateAnalyzerSummary",
26     # Histo generation flasg
27 battilan 1.2 SummaryHistos = cms.untracked.bool(True),
28 battilan 1.1 SummaryWheelHistos = cms.untracked.bool(True),
29     SummaryAllHistos = cms.untracked.bool(True),
30     # Input File Name
31     rootFileName = cms.untracked.string(""),
32     # Run Number
33     runNumber = cms.untracked.int32(1)
34     )
35    
36     createDQMSummaries = cms.Sequence( createDTDPGDQMSummary + createDTDPGDQMWheelSummary )
37     createSummaries = cms.Sequence( createDQMSummaries + createDTDPGAnalyzerSummary )
38 cerminar 1.3