CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ALCARECOTkAlCosmicsInCollisions_cff.py
Go to the documentation of this file.
1 # Author : Andreas Mussgiller
2 # Date : July 1st, 2010
3 # last update: $Date: 2010/03/17 18:17:34 $ by $Author: mussgill $
4 
5 import FWCore.ParameterSet.Config as cms
6 
7 #_________________________________HLT bits___________________________________________
9 ALCARECOTkAlCosmicsInCollisionsHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
10  andOr = True, ## choose logical OR between Triggerbits
11  eventSetupPathsKey = 'TkAlCosmics',
12  throw = False # tolerate triggers not available
13  )
14 
15 # DCS partitions
16 # "EBp","EBm","EEp","EEm","HBHEa","HBHEb","HBHEc","HF","HO","RPC"
17 # "DT0","DTp","DTm","CSCp","CSCm","CASTOR","TIBTID","TOB","TECp","TECm"
18 # "BPIX","FPIX","ESp","ESm"
19 import DPGAnalysis.Skims.skim_detstatus_cfi
20 ALCARECOTkAlCosmicsInCollisionsDCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone(
21  DetectorType = cms.vstring('TIBTID','TOB','TECp','TECm','BPIX','FPIX'),
22  ApplyFilter = cms.bool(True),
23  AndOr = cms.bool(True),
24  DebugOn = cms.untracked.bool(False)
25 )
26 
27 #________________________________Track selection____________________________________
28 # AlCaReco for track based alignment using Cosmic muons reconstructed by Combinatorial Track Finder
30 ALCARECOTkAlCosmicsInCollisions = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
31  src = 'regionalCosmicTracks',
32  filter = True,
33  applyBasicCuts = True,
34 
35  ptMin = 0., ##10
36  ptMax = 99999.,
37  pMin = 4., ##10
38  pMax = 99999.,
39  etaMin = -99., ##-2.4 keep also what is going through...
40  etaMax = 99., ## 2.4 ...both TEC with flat slope
41 
42  nHitMin = 7,
43  nHitMin2D = 2,
44  chi2nMax = 999999.,
45 
46  applyMultiplicityFilter = False,
47  applyNHighestPt = True, ## select only highest pT track
48  nHighestPt = 1
49  )
50 
51 #________________________________Sequences____________________________________
52 seqALCARECOTkAlCosmicsInCollisions = cms.Sequence(ALCARECOTkAlCosmicsInCollisionsHLT+ALCARECOTkAlCosmicsInCollisionsDCSFilter+ALCARECOTkAlCosmicsInCollisions)
dont throw on unknown path names