CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_cff.py

Go to the documentation of this file.
00001 # Author     : Gero Flucke
00002 # Date       :   July 19th, 2007
00003 # last update: $Date: 2011/07/01 07:01:20 $ by $Author: mussgill $
00004 import FWCore.ParameterSet.Config as cms
00005 
00006 # DCS partitions
00007 # "EBp","EBm","EEp","EEm","HBHEa","HBHEb","HBHEc","HF","HO","RPC"
00008 # "DT0","DTp","DTm","CSCp","CSCm","CASTOR","TIBTID","TOB","TECp","TECm"
00009 # "BPIX","FPIX","ESp","ESm"
00010 import DPGAnalysis.Skims.skim_detstatus_cfi
00011 ALCARECOTkAlCosmics0TDCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone(
00012     DetectorType = cms.vstring('TIBTID','TOB','TECp','TECm','BPIX','FPIX'),
00013     ApplyFilter  = cms.bool(True),
00014     AndOr        = cms.bool(True),
00015     DebugOn      = cms.untracked.bool(False)
00016 )
00017 
00018 #________________________________Track selection____________________________________
00019 # AlCaReco for track based Alignment using Cosmic muons reconstructed by Combinatorial Track Finder
00020 import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi
00021 ALCARECOTkAlCosmicsCTF0T = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
00022     src = 'ctfWithMaterialTracksP5',
00023     filter = True,
00024     applyBasicCuts = True,
00025     ptMin = 0., ##10
00026     ptMax = 99999.,
00027     etaMin = -99., ##-2.4 keep also what is going through...
00028     etaMax = 99., ## 2.4 ...both TEC with flat slope
00029     nHitMin = 7,
00030     nHitMin2D = 2,
00031     chi2nMax = 999999.,
00032     applyNHighestPt = False, ## no pT measurement -> sort meaningless
00033     nHighestPt = 1,
00034     applyMultiplicityFilter = False
00035     )
00036 
00037 # AlCaReco for track based Alignment using Cosmic muons reconstructed by Cosmic Track Finder
00038 # (same cuts)
00039 ALCARECOTkAlCosmicsCosmicTF0T = ALCARECOTkAlCosmicsCTF0T.clone(
00040     src = 'cosmictrackfinderP5' ## different for CTF
00041     )
00042 
00043 # AlCaReco for track based Alignment using Cosmic muons reconstructed by Regional Cosmic Tracking
00044 # (same cuts)
00045 ALCARECOTkAlCosmicsRegional0T = ALCARECOTkAlCosmicsCTF0T.clone(
00046     src = 'regionalCosmicTracks'
00047     )
00048 
00049 #________________________________Sequences____________________________________
00050 seqALCARECOTkAlCosmicsCTF0T = cms.Sequence(ALCARECOTkAlCosmicsCTF0T)
00051 seqALCARECOTkAlCosmicsCosmicTF0T = cms.Sequence(ALCARECOTkAlCosmicsCosmicTF0T)
00052 seqALCARECOTkAlCosmicsRegional0T = cms.Sequence(ALCARECOTkAlCosmicsRegional0T)