CMS 3D CMS Logo

ALCARECOTkAlCosmics0T_cff.py
Go to the documentation of this file.
1 # Author : Gero Flucke
2 # Date : July 19th, 2007
3 # last update: $Date: 2010/03/17 18:17:34 $ by $Author: mussgill $
4 import FWCore.ParameterSet.Config as cms
5 
6 # DCS partitions
7 # "EBp","EBm","EEp","EEm","HBHEa","HBHEb","HBHEc","HF","HO","RPC"
8 # "DT0","DTp","DTm","CSCp","CSCm","CASTOR","TIBTID","TOB","TECp","TECm"
9 # "BPIX","FPIX","ESp","ESm"
10 import DPGAnalysis.Skims.skim_detstatus_cfi
11 ALCARECOTkAlCosmics0TDCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone(
12  DetectorType = cms.vstring('TIBTID','TOB','TECp','TECm','BPIX','FPIX'),
13  ApplyFilter = cms.bool(True),
14  AndOr = cms.bool(True),
15  DebugOn = cms.untracked.bool(False)
16 )
17 
18 #________________________________Track selection____________________________________
19 # AlCaReco for track based alignment using Cosmic muons reconstructed by Combinatorial Track Finder
21 ALCARECOTkAlCosmicsCTF0T = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
22  src = 'ctfWithMaterialTracksP5',
23  filter = True,
24  applyBasicCuts = True,
25  ptMin = 0.,
26  ptMax = 99999.,
27  etaMin = -99.,
28  etaMax = 99.,
29  nHitMin = 7,
30  nHitMin2D = 2,
31  chi2nMax = 999999.,
32  applyNHighestPt = False,
33  nHighestPt = 1,
34  applyMultiplicityFilter = False
35  )
36 
37 # AlCaReco for track based alignment using Cosmic muons reconstructed by Cosmic Track Finder
38 # (same cuts)
39 ALCARECOTkAlCosmicsCosmicTF0T = ALCARECOTkAlCosmicsCTF0T.clone(
40  src = 'cosmictrackfinderP5'
41  )
42 
43 # AlCaReco for track based alignment using Cosmic muons reconstructed by Regional Cosmic Tracking
44 # (same cuts)
45 ALCARECOTkAlCosmicsRegional0T = ALCARECOTkAlCosmicsCTF0T.clone(
46  src = 'regionalCosmicTracks'
47  )
48 
49 # AlCaReco for track based alignment using Cosmic muons reconstructed by Cosmics During Collisions Algorithm
50 # (same cuts)
51 ALCARECOTkAlCosmicsDuringCollisions0T = ALCARECOTkAlCosmicsCTF0T.clone(
52  src = 'cosmicDCTracks'
53  )
54 
55 #________________________________Sequences____________________________________
56 seqALCARECOTkAlCosmicsCTF0T = cms.Sequence(ALCARECOTkAlCosmicsCTF0T)
57 seqALCARECOTkAlCosmicsCosmicTF0T = cms.Sequence(ALCARECOTkAlCosmicsCosmicTF0T)
58 seqALCARECOTkAlCosmicsRegional0T = cms.Sequence(ALCARECOTkAlCosmicsRegional0T)
59 seqALCARECOTkAlCosmicsDuringCollisions0T = cms.Sequence(ALCARECOTkAlCosmicsDuringCollisions0T)
dont throw on unknown path names