Skip to content

Commit

Permalink
Merge pull request #19474 from suchandradutta/Phase2Digitizer_92X_170629
Browse files Browse the repository at this point in the history
Bug fix in Phase2 Tracker Digitizer  validation code
  • Loading branch information
cmsbuild committed Jul 4, 2017
2 parents bfe6843 + d8f3081 commit e4d2a49
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Expand Up @@ -25,6 +25,8 @@
GeometryType = cms.string('idealForDigi'),
PtCutOff = cms.double(9.5),
EtaCutOff = cms.double(3.5),
TOFLowerCutOff = cms.double(-12.5),
TOFUpperCutOff = cms.double(12.5),
TrackPtH = cms.PSet(
Nbins = cms.int32(50),
xmin = cms.double(0.0),
Expand Down
4 changes: 2 additions & 2 deletions SimTracker/SiPhase2Digitizer/test/DigiTest_cfg.py
@@ -1,7 +1,7 @@
import FWCore.ParameterSet.Config as cms

from Configuration.StandardSequences.Eras import eras
process = cms.Process('digiTest',eras.Phase2C2)
process = cms.Process('digiTest',eras.Phase2)
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(-1)
)
Expand All @@ -15,7 +15,7 @@
process.load('Configuration.StandardSequences.Services_cff')
process.load('FWCore.MessageService.MessageLogger_cfi')
process.load('Configuration.EventContent.EventContent_cff')
process.load('Configuration.Geometry.GeometryExtended2023D4Reco_cff')
process.load('Configuration.Geometry.GeometryExtended2023D17Reco_cff')
process.load('Configuration.StandardSequences.MagneticField_cff')
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
process.load('Configuration.StandardSequences.EndOfProcess_cff')
Expand Down
Expand Up @@ -72,7 +72,7 @@ Phase2TrackerValidateDigi::Phase2TrackerValidateDigi(const edm::ParameterSet& iC
etaCut_ = config_.getParameter<double>("EtaCutOff");
ptCut_ = config_.getParameter<double>("PtCutOff");
tofUpperCut_ = config_.getParameter<double>("TOFUpperCutOff");
tofLowerCut_ = config_.getParameter<double>("TOFUpperCutOff");
tofLowerCut_ = config_.getParameter<double>("TOFLowerCutOff");

edm::LogInfo("Phase2TrackerValidateDigi") << ">>> Construct Phase2TrackerValidateDigi ";
}
Expand Down

0 comments on commit e4d2a49

Please sign in to comment.