Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:55:57

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 
0004 
0005 import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi
0006 
0007 
0008 
0009 ##
0010 ## FILTER for high purity tracks
0011 ##
0012 HighPuritySelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
0013     applyBasicCuts = True,
0014     filter = True,
0015     src = 'ALCARECOTkAlMuonIsolated',
0016     etaMin = -999.,
0017     etaMax = 999.,
0018     trackQualities = ["highPurity"],
0019 )
0020 
0021 ## Filter for cosmics tracks
0022 NoPuritySelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
0023     applyBasicCuts = True,
0024     filter = True,
0025     src = 'ALCARECOTkAlMuonIsolated',
0026     etaMin = -999.,
0027     etaMax = 999.,
0028 )
0029 
0030 ##
0031 ## Filters for skims
0032 ##
0033 genSimSkimSelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
0034     applyBasicCuts = True,
0035     filter = True,
0036     src = 'generalTracks',
0037     ptMin = 5.,
0038     pMin = 9.,
0039     etaMin = -999.,
0040     etaMax = 999.,
0041     d0Min = -2.,
0042     d0Max = 2.,
0043     dzMin = -25.,
0044     dzMax = 25.,
0045     nHitMin = 12,
0046     nHitMin2D = 2,
0047 )
0048 
0049 
0050 MinBiasSkimSelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
0051     applyBasicCuts = True,
0052     filter = True,
0053     src = 'ALCARECOTkAlMinBias',
0054     ptMin = 5.,
0055     pMin = 9.,
0056     etaMin = -999.,
0057     etaMax = 999.,
0058     d0Min = -2.,
0059     d0Max = 2.,
0060     dzMin = -25.,
0061     dzMax = 25.,
0062     nHitMin = 12,
0063     nHitMin2D = 2,
0064 )
0065 
0066 
0067 
0068 MuSkimSelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
0069     applyBasicCuts = True,
0070     filter = True,
0071     src = 'ALCARECOTkAlMuonIsolated',
0072     ptMin = 17.,
0073     pMin = 17.,
0074     etaMin = -2.5,
0075     etaMax = 2.5,
0076     d0Min = -2.,
0077     d0Max = 2.,
0078     dzMin = -25.,
0079     dzMax = 25.,
0080     nHitMin = 6,
0081     nHitMin2D = 0,
0082 )
0083 
0084 DoubleMuSkimSelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
0085     applyBasicCuts = True,
0086     filter = True,
0087     src = 'ALCARECOTkAlZMuMu',
0088     ptMin = 17.,
0089     pMin = 17.,
0090     etaMin = -2.5,
0091     etaMax = 2.5,
0092     d0Min = -2.,
0093     d0Max = 2.,
0094     dzMin = -25.,
0095     dzMax = 25.,
0096     nHitMin = 6,
0097     nHitMin2D = 0,
0098 )
0099 
0100 CosmicsSkimSelector = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
0101     applyBasicCuts = True,
0102     filter = True,
0103     src = 'ALCARECOTkAlCosmicsCTF0T',
0104     etaMin = -2.5,
0105     etaMax = 2.5,
0106     nHitMin = 6,
0107     nHitMin2D = 0,
0108 )
0109 
0110 
0111 
0112