CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ALCARECOMuAlStandAloneCosmics_cff.py
Go to the documentation of this file.
1 # AlCaReco for muon alignment using stand-alone cosmic ray tracks
2 import FWCore.ParameterSet.Config as cms
3 
4 # HLT
6 ALCARECOMuAlStandAloneCosmicsHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
7  andOr = True, ## choose logical OR between Triggerbits
8  eventSetupPathsKey = 'MuAlStandAloneCosmics',
9  throw = False # tolerate triggers not available
10  )
11 
12 # DCS partitions
13 # "EBp","EBm","EEp","EEm","HBHEa","HBHEb","HBHEc","HF","HO","RPC"
14 # "DT0","DTp","DTm","CSCp","CSCm","CASTOR","TIBTID","TOB","TECp","TECm"
15 # "BPIX","FPIX","ESp","ESm"
16 import DPGAnalysis.Skims.skim_detstatus_cfi
17 ALCARECOMuAlStandAloneCosmicsDCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone(
18  DetectorType = cms.vstring('DT0','DTp','DTm','CSCp','CSCm'),
19  ApplyFilter = cms.bool(True),
20  AndOr = cms.bool(False),
21  DebugOn = cms.untracked.bool(False)
22 )
23 
24 import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi
25 ALCARECOMuAlStandAloneCosmics = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
26  src = "cosmicMuons", #cms.InputTag("cosmicMuons")
27  filter = True,
28  ptMin = 10.0,
29  etaMin = -100.0,
30  etaMax = 100.0
31  )
32 
33 seqALCARECOMuAlStandAloneCosmics = cms.Sequence(ALCARECOMuAlStandAloneCosmicsHLT + ALCARECOMuAlStandAloneCosmicsDCSFilter + ALCARECOMuAlStandAloneCosmics)
34