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
11 # 2D Segments
13 # 4D Segments
15 # 4D segments with t0 correction
17 #------------------------------------ CSC -----------------------------------------------
18 # 2D RecHit
20 # Segments
24 #------------------------------------ RPC -----------------------------------------------
25 # 1D RecHits
27 #----------------------------------------------------------------------------------------
28 # DT sequence for the standard reconstruction chain
29 # The reconstruction of the 2D segments are not required for the 4D segments reconstruction, they are used
30 # only for debuging purpose and for specific studies
31 dtlocalreco = cms.Sequence(dt1DRecHits*dt4DSegments + dt1DCosmicRecHits*dt4DCosmicSegments)
32 # DT sequence with the 2D segment reconstruction
33 dtlocalreco_with_2DSegments = cms.Sequence(dt1DRecHits*dt2DSegments*dt4DSegments + dt1DCosmicRecHits*dt2DCosmicSegments*dt4DCosmicSegments)
34 # DT sequence with T0seg correction
35 # CSC sequence
36 csclocalreco = cms.Sequence(csc2DRecHits*cscSegments)
37 # DT, CSC and RPC together
38 muonlocalreco_with_2DSegments = cms.Sequence(dtlocalreco_with_2DSegments+csclocalreco+rpcRecHits)
39 # DT, CSC and RPC together (correct sequence for the standard path)
40 muonlocalreco = cms.Sequence(dtlocalreco+csclocalreco+rpcRecHits)