Skip to content

Commit

Permalink
make use of full common alignment track selection and fitting sequenc…
Browse files Browse the repository at this point in the history
…e for phase-2
  • Loading branch information
mmusich committed Feb 24, 2023
1 parent bf693a8 commit 0a117c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Expand Up @@ -30,10 +30,7 @@ class RefitType(Enum):
_allFromGT = True
_applyBows = True
_applyExtraConditions = True
if(options.isPhase2):
_theRefitter = RefitType.STANDARD # FIXME: once the sequence is cleared out
else:
_theRefitter = RefitType.COMMON
_theRefitter = RefitType.COMMON # RefitType.STANDARD (other option not involving filtering)
_theTrackCollection = 'generalTracks' # FIXME: 'ALCARECOTkAlMinBias' once a sample is available

###################################################################
Expand Down
7 changes: 5 additions & 2 deletions Alignment/OfflineValidation/test/test_all_Phase2_cfg.py
Expand Up @@ -59,7 +59,7 @@ class RefitType(Enum):
threshold = cms.untracked.string("INFO"),
default = cms.untracked.PSet(limit = cms.untracked.int32(0)),
FwkReport = cms.untracked.PSet(limit = cms.untracked.int32(-1),
reportEvery = cms.untracked.int32(1000)
reportEvery = cms.untracked.int32(1)
),
PrimaryVertexValidation = cms.untracked.PSet( limit = cms.untracked.int32(-1)),
SplitVertexResolution = cms.untracked.PSet( limit = cms.untracked.int32(-1)),
Expand Down Expand Up @@ -295,7 +295,10 @@ def switchClusterizerParameters(da):
TkClusParameters = switchClusterizerParameters(isDA)
)

process.TrackerTrackHitFilter.isPhase2 = cms.untracked.bool(True)
####################################################################
# Needed to avoid dependency from Phase-0 strip conditions
####################################################################
#process.TrackerTrackHitFilter.isPhase2 = cms.bool(True)

####################################################################
# Path
Expand Down

0 comments on commit 0a117c6

Please sign in to comment.