Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:08:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("DQMOnlineSimData")
0004 
0005 process.MessageLogger = cms.Service(
0006     "MessageLogger",
0007     debug_txt = cms.untracked.PSet( threshold = cms.untracked.string('DEBUG') ),
0008     destinations = cms.untracked.vstring('debug_txt'),
0009     #debugModules = cms.untracked.vstring("SiStripMonitorTrack","SiStripClusterInfo")
0010     debugModules = cms.untracked.vstring("SiStripMonitorTrack")
0011     )
0012 
0013 #-------------------------------------------------
0014 ## MAGNETIC FIELD
0015 #-------------------------------------------------
0016 process.load("Configuration.StandardSequences.MagneticField_0T_cff")
0017 process.prefer("VolumeBasedMagneticFieldESProducer")
0018 
0019 #-------------------------------------------------
0020 ## GEOMETRY
0021 #-------------------------------------------------
0022 
0023 # CMS Geometry
0024 process.load("Configuration.StandardSequences.GeometryRecoDB_cff")
0025 
0026 #-------------------------------------------------
0027 ## CALIBRATION
0028 #-------------------------------------------------
0029 process.load("CalibTracker.Configuration.Tracker_FakeConditions_cff")
0030 
0031 #--------------------------
0032 #### DQM
0033 #--------------------------
0034 # DQM services
0035 process.load("DQMServices.Core.DQM_cfg")
0036 
0037 #-------------------------------------
0038 #### SiStripMonitorTrack + Scheduling
0039 #-------------------------------------
0040 # Standard Monitoring
0041 process.load("DQM.SiStripMonitorTrack.SiStripMonitorTrack_StandAlone_cff")
0042 process.p = cms.Path(process.DQMSiStripMonitorTrack_Sim)
0043 # Monitoring with Eta Function from SiStripRawDigi
0044 #process.load("DQM.SiStripMonitorTrack.SiStripMonitorTrack_RawStandAlone_cff")
0045 #process.p = cms.Path(process.DQMSiStripMonitorTrack_RawSim)
0046 process.TrackRefitter.TrajectoryInEvent = True
0047 
0048 process.printout = cms.OutputModule("AsciiOutputModule")
0049 process.ep = cms.EndPath(process.printout)
0050 
0051 process.AdaptorConfig = cms.Service("AdaptorConfig")
0052 
0053 process.source = cms.Source(
0054     "PoolSource",
0055     fileNames = cms.untracked.vstring('/store/relval/2008/6/6/RelVal-RelValSingleMuPt1-1212531852-IDEAL_V1-2nd-02/0000/74A33D36-E933-DD11-BC9E-001617E30F56.root')
0056     #firstRun   = cms.untracked.uint32(6)
0057     #firstEvent = cms.untracked.uint32(15)
0058     )
0059 
0060 process.maxEvents = cms.untracked.PSet(
0061     input = cms.untracked.int32(100)
0062     )