Skip to content

Commit

Permalink
protection from missing new cards
Browse files Browse the repository at this point in the history
  • Loading branch information
namapane committed Jul 24, 2021
1 parent 3adb8a1 commit f96be9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RecoLocalMuon/DTRecHit/plugins/DTLinearDriftFromDBAlgo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ DTLinearDriftFromDBAlgo::DTLinearDriftFromDBAlgo(const ParameterSet& config)
// Option to force going back to digi time at Step 2
stepTwoFromDigi(config.getParameter<bool>("stepTwoFromDigi")),
useUncertDB(config.getParameter<bool>("useUncertDB")),
readLegacyTTrigDB(config.getParameter<bool>("readLegacyTTrigDB")),
readLegacyVDriftDB(config.getParameter<bool>("readLegacyVDriftDB")),
readLegacyTTrigDB(config.existsAs<bool>("readLegacyTTrigDB") ? config.getParameter<bool>("readLegacyTTrigDB") : true ),
readLegacyVDriftDB(config.existsAs<bool>("readLegacyVDriftDB") ? config.getParameter<bool>("readLegacyVDriftDB") : true ),
// Set verbose output
debug(config.getUntrackedParameter<bool>("debug")) {}

Expand Down

0 comments on commit f96be9a

Please sign in to comment.