/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/CommonAlignmentProducer/python/ALCARECOTkAlCosmics0T_cff.py
59 строк
2 KB
mmusich
add cdc Tracks to TkAlCosmics0T ALCARECO
28 май 2020, 14:27
28 май 2020, 14:27
2cc2900
Код
Авторство
О чём код?
# Author : Gero Flucke # Date : July 19th, 2007 # last update: $Date: 2010/03/17 18:17:34 $ by $Author: mussgill $ import FWCore.ParameterSet.Config as cms # DCS partitions # "EBp","EBm","EEp","EEm","HBHEa","HBHEb","HBHEc","HF","HO","RPC" # "DT0","DTp","DTm","CSCp","CSCm","CASTOR","TIBTID","TOB","TECp","TECm" # "BPIX","FPIX","ESp","ESm" import DPGAnalysis.Skims.skim_detstatus_cfi ALCARECOTkAlCosmics0TDCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone( DetectorType = cms.vstring('TIBTID','TOB','TECp','TECm','BPIX','FPIX'), ApplyFilter = cms.bool(True), AndOr = cms.bool(True), DebugOn = cms.untracked.bool(False) ) #________________________________Track selection____________________________________ # AlCaReco for track based alignment using Cosmic muons reconstructed by Combinatorial Track Finder import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi ALCARECOTkAlCosmicsCTF0T = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone( src = 'ctfWithMaterialTracksP5', filter = True, applyBasicCuts = True, ptMin = 0., ##10 ptMax = 99999., etaMin = -99., ##-2.4 keep also what is going through... etaMax = 99., ## 2.4 ...both TEC with flat slope nHitMin = 7, nHitMin2D = 2, chi2nMax = 999999., applyNHighestPt = False, ## no pT measurement -> sort meaningless nHighestPt = 1, applyMultiplicityFilter = False ) # AlCaReco for track based alignment using Cosmic muons reconstructed by Cosmic Track Finder # (same cuts) ALCARECOTkAlCosmicsCosmicTF0T = ALCARECOTkAlCosmicsCTF0T.clone( src = 'cosmictrackfinderP5' ## different for CTF ) # AlCaReco for track based alignment using Cosmic muons reconstructed by Regional Cosmic Tracking # (same cuts) ALCARECOTkAlCosmicsRegional0T = ALCARECOTkAlCosmicsCTF0T.clone( src = 'regionalCosmicTracks' ) # AlCaReco for track based alignment using Cosmic muons reconstructed by Cosmics During Collisions Algorithm # (same cuts) ALCARECOTkAlCosmicsDuringCollisions0T = ALCARECOTkAlCosmicsCTF0T.clone( src = 'cosmicDCTracks' ) #________________________________Sequences____________________________________ seqALCARECOTkAlCosmicsCTF0T = cms.Sequence(ALCARECOTkAlCosmicsCTF0T) seqALCARECOTkAlCosmicsCosmicTF0T = cms.Sequence(ALCARECOTkAlCosmicsCosmicTF0T) seqALCARECOTkAlCosmicsRegional0T = cms.Sequence(ALCARECOTkAlCosmicsRegional0T) seqALCARECOTkAlCosmicsDuringCollisions0T = cms.Sequence(ALCARECOTkAlCosmicsDuringCollisions0T)