CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RecoLocalMuon_cff.py
Go to the documentation of this file.
2 
3 # Magnetic Field
4 # Geometry
5 # DT Geometry
6 # CSC Geometry
7 # RPC Geometry
8 #------------------------------------ DT ------------------------------------------------
9 # 1D RecHits
10 # from RecoLocalMuon.DTRecHit.dt1DRecHits_ParamDrift_cfi import *
11 # include "RecoLocalMuon/DTRecHit/data/dt1DRecHits_LinearDrift.cfi"
12 # include "RecoLocalMuon/DTRecHit/data/dt1DRecHits_LinearDriftFromDB.cfi"
14 # 2D Segments
15 # from RecoLocalMuon.DTSegment.dt2DSegments_CombPatternReco2D_ParamDrift_cfi import *
16 # include "RecoLocalMuon/DTSegment/data/dt2DSegments_CombPatternReco2D_LinearDrift.cfi"
17 # include "RecoLocalMuon/DTSegment/data/dt2DSegments_CombPatternReco2D_LinearDriftFromDB.cfi"
19 # 4D Segments
20 # from RecoLocalMuon.DTSegment.dt4DSegments_CombPatternReco4D_ParamDrift_cfi import *
21 # include "RecoLocalMuon/DTSegment/data/dt4DSegments_CombPatternReco4D_LinearDrift.cfi"
22 # include "RecoLocalMuon/DTSegment/data/dt4DSegments_CombPatternReco4D_LinearDriftFromDB.cfi"
24 # 4D segments with t0 correction
26 #------------------------------------ CSC -----------------------------------------------
27 # 2D RecHit
29 # Segments
31 #------------------------------------ RPC -----------------------------------------------
32 # 1D RecHits
34 #----------------------------------------------------------------------------------------
35 # DT sequence for the standard reconstruction chain
36 # The reconstruction of the 2D segments are not required for the 4D segments reconstruction, they are used
37 # only for debuging purpose and for specific studies
38 dtlocalreco = cms.Sequence(dt1DRecHits*dt4DSegments + dt1DCosmicRecHits*dt4DCosmicSegments)
39 # DT sequence with the 2D segment reconstruction
40 dtlocalreco_with_2DSegments = cms.Sequence(dt1DRecHits*dt2DSegments*dt4DSegments + dt1DCosmicRecHits*dt2DCosmicSegments*dt4DCosmicSegments)
41 # DT sequence with T0seg correction
42 # CSC sequence
43 csclocalreco = cms.Sequence(csc2DRecHits*cscSegments)
44 # DT, CSC and RPC together
45 muonlocalreco_with_2DSegments = cms.Sequence(dtlocalreco_with_2DSegments+csclocalreco+rpcRecHits)
46 # DT, CSC and RPC together (correct sequence for the standard path)
47 muonlocalreco = cms.Sequence(dtlocalreco+csclocalreco+rpcRecHits)