ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/DTDPGAnalysis/python/dt_dpganalysis_common_cff.py
Revision: 1.2
Committed: Wed Oct 29 15:02:39 2008 UTC (16 years, 6 months ago) by battilan
Content type: text/x-python
Branch: MAIN
Changes since 1.1: +35 -14 lines
Log Message:
added DT Analysis cf* and included global reco in common

File Contents

# User Rev Content
1 battilan 1.1 from EventFilter.DTTFRawToDigi.dttfunpacker_cfi import *
2    
3     dtunpacker = cms.EDFilter("DTUnpackingModule",
4     dataType = cms.string('DDU'),
5     useStandardFEDid = cms.untracked.bool(True),
6     fedbyType = cms.untracked.bool(True),
7     readOutParameters = cms.PSet(debug = cms.untracked.bool(False),
8     rosParameters = cms.PSet(writeSC = cms.untracked.bool(True),
9     readingDDU = cms.untracked.bool(True),
10     performDataIntegrityMonitor = cms.untracked.bool(True),
11     readDDUIDfromDDU = cms.untracked.bool(True),
12     debug = cms.untracked.bool(False),
13     localDAQ = cms.untracked.bool(False)
14     ),
15     localDAQ = cms.untracked.bool(False),
16     performDataIntegrityMonitor = cms.untracked.bool(True)
17     )
18     )
19    
20    
21     from Configuration.StandardSequences.Geometry_cff import *
22 battilan 1.2 from RecoLocalMuon.Configuration.RecoLocalMuonCosmics_cff import *
23 battilan 1.1 dt1DRecHits.dtDigiLabel = 'dtunpacker'
24 battilan 1.2 DTLinearDriftFromDBAlgo_CosmicData.recAlgoConfig.tTrigModeConfig.kFactor = -0.7
25     #DTLinearDriftFromDBAlgo_CosmicData.recAlgoConfig.hitResolution = 0.05
26 battilan 1.1
27 battilan 1.2 from RecoMuon.Configuration.RecoMuonCosmics_cff import *
28     from TrackPropagation.SteppingHelixPropagator.SteppingHelixPropagator_cfi import *
29     from RecoVertex.BeamSpotProducer.BeamSpot_cff import *
30     cosmicMuonsBarrelOnly.TrajectoryBuilderParameters.EnableRPCMeasurement = False
31 battilan 1.1
32     from CondCore.DBCommon.CondDBSetup_cfi import *
33    
34     GlobalPositionSource = cms.ESSource("PoolDBESSource",
35     CondDBSetup,
36     toGet = cms.VPSet(cms.PSet(record = cms.string('GlobalPositionRcd'),
37     tag = cms.string('IdealGeometry')
38     ),
39     cms.PSet(record = cms.string('DTAlignmentRcd'),
40     tag = cms.string('DTIdealGeometry200_mc')
41     ),
42     cms.PSet(record = cms.string('DTAlignmentErrorRcd'),
43     tag = cms.string('DTIdealGeometryErrors200_mc')
44 battilan 1.2 ),
45     cms.PSet(record = cms.string('CSCAlignmentRcd'),
46     tag = cms.string('CSCIdealGeometry200_mc')
47     ),
48     cms.PSet(record = cms.string('CSCAlignmentErrorRcd'),
49     tag = cms.string('CSCIdealGeometryErrors200_mc')
50     ),
51     cms.PSet(record = cms.string('TrackerAlignmentRcd'),
52     tag = cms.string('TrackerIdealGeometry210_mc')
53     ),
54     cms.PSet(record = cms.string('TrackerAlignmentErrorRcd'),
55     tag = cms.string('TrackerIdealGeometryErrors210_mc')
56 battilan 1.1 )
57     ),
58     connect = cms.string('frontier://cms_conditions_data/CMS_COND_21X_ALIGNMENT')
59     )
60    
61 battilan 1.2 beamSpotSource = cms.ESSource("PoolDBESSource",
62     CondDBSetup,
63     timetype = cms.string('runnumber'),
64     toGet = cms.VPSet(cms.PSet(record = cms.string('BeamSpotObjectsRcd'),
65     tag = cms.string('Early10TeVCollision_3p8cm_v2_mc')
66     )
67     ),
68     connect = cms.string('frontier://Frontier/CMS_COND_21X_BEAMSPOT'),
69     authenticationMethod = cms.untracked.uint32(0)
70     )
71    
72 battilan 1.1 roMapping = cms.ESSource("PoolDBESSource",
73     CondDBSetup,
74     timetype = cms.string('runnumber'),
75     toGet = cms.VPSet(cms.PSet(record = cms.string('DTReadOutMappingRcd'),
76     tag = cms.string('map_CRUZET')
77     ),
78     cms.PSet(record = cms.string('DTT0Rcd'),
79     tag = cms.string('t0_CRUZET_hlt')
80     ),
81     cms.PSet(record = cms.string('DTTtrigRcd'),
82     tag = cms.string('ttrig_CRAFT_081017_2109_offline')
83     ),
84     cms.PSet(record = cms.string('DTStatusFlagRcd'),
85     tag = cms.string('noise_CRUZET_hlt')
86 battilan 1.2 ),
87     cms.PSet(record = cms.string('DTMtimeRcd'),
88     tag = cms.string('vDrift_LHCStartUp_543_CMSSW219')
89 battilan 1.1 )
90     ),
91     connect = cms.string('frontier://Frontier/CMS_COND_21X_DT'),
92     authenticationMethod = cms.untracked.uint32(0)
93     )
94    
95    
96     unpackers = cms.Sequence(dtunpacker + dttfunpacker)
97 battilan 1.2 reco = cms.Sequence(dt1DRecHits * dt2DSegments * dt4DSegments)
98     globalreco = cms.Sequence(CosmicMuonSeedBarrelOnly * offlineBeamSpot * cosmicMuonsBarrelOnly)