CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
LaserDQM_cfg.py
Go to the documentation of this file.
2 
3 process = cms.Process("LaserDQM")
4 # service = MonitorDaemon
5 # {
6 # # if true, will automatically start DQM thread in background
7 # untracked bool AutoInstantiate=false
8 # # if >=0, upon a connection problem, the source will automatically
9 # # attempt to reconnect with a time delay (secs) specified here
10 # # (default: 5)
11 # untracked int32 reconnect_delay = 5
12 # # collector hostname; examples: localhost(default),lxcmse2.cern.ch, etc
13 # untracked string DestinationAddress = "localhost"
14 # # port for communicating with collector (default: 9090)
15 # untracked int32 SendPort = 9090
16 # # monitoring period in ms (i.e. how often monitoring elements
17 # # are shipped to the collector; default: 1000)
18 # untracked int32 UpdateDelay = 1000
19 # # name of DQM source (default: DQMSource)
20 # untracked string NameAsSource = "FU0"
21 # }
22 # Ideal geometry producer
23 process.load("Geometry.TrackerRecoData.trackerRecoGeometryXML_cfi")
24 
25 # Interface to ideal geometry producer
26 process.load("Geometry.TrackerNumberingBuilder.trackerNumberingGeometry_cfi")
27 
28 # Tracker Geometry
29 process.load("Geometry.TrackerGeometryBuilder.trackerGeometry_cfi")
30 
31 process.load("Alignment.LaserDQM.LaserDQM_cfi")
32 
33 process.source = cms.Source("PoolSource",
34  fileNames = cms.untracked.vstring('simevent.root')
35 )
36 
37 process.maxEvents = cms.untracked.PSet(
38  input = cms.untracked.int32(-1)
39 )
40 process.DaqMonitorROOTBackEnd = cms.Service("DaqMonitorROOTBackEnd")
41 
42 process.p1 = cms.Path(process.mon)
43