Go to the documentation of this file.00001
00002
00003
00004
00005 import FWCore.ParameterSet.Config as cms
00006
00007
00008
00009
00010
00011 import DPGAnalysis.Skims.skim_detstatus_cfi
00012 ALCARECOTkAlCosmicsDCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone(
00013 DetectorType = cms.vstring('TIBTID','TOB','TECp','TECm','BPIX','FPIX'),
00014 ApplyFilter = cms.bool(True),
00015 AndOr = cms.bool(True),
00016 DebugOn = cms.untracked.bool(False)
00017 )
00018
00019
00020
00021 import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi
00022 ALCARECOTkAlCosmicsCTF = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
00023 src = 'ctfWithMaterialTracksP5',
00024 filter = True,
00025 applyBasicCuts = True,
00026
00027 ptMin = 0.,
00028 ptMax = 99999.,
00029 pMin = 4.,
00030 pMax = 99999.,
00031 etaMin = -99.,
00032 etaMax = 99.,
00033
00034 nHitMin = 7,
00035 nHitMin2D = 2,
00036 chi2nMax = 999999.,
00037
00038 applyMultiplicityFilter = False,
00039 applyNHighestPt = True,
00040 nHighestPt = 1
00041 )
00042
00043
00044
00045 ALCARECOTkAlCosmicsCosmicTF = ALCARECOTkAlCosmicsCTF.clone(
00046 src = 'cosmictrackfinderP5'
00047 )
00048
00049
00050
00051 ALCARECOTkAlCosmicsRegional = ALCARECOTkAlCosmicsCTF.clone(
00052 src = 'regionalCosmicTracks'
00053 )
00054
00055
00056 seqALCARECOTkAlCosmicsCTF = cms.Sequence(ALCARECOTkAlCosmicsCTF)
00057 seqALCARECOTkAlCosmicsCosmicTF = cms.Sequence(ALCARECOTkAlCosmicsCosmicTF)
00058 seqALCARECOTkAlCosmicsRegional = cms.Sequence(ALCARECOTkAlCosmicsRegional)