Skip to content
Snippets Groups Projects

Add "empty" conditions when they are missing from the database

Merged Roel Aaij requested to merge default_conditions into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -114,7 +114,7 @@ void _iterate_muon( const LHCb::Detector::DeMuon& muon ) {
// test listOfPhysChannels and related code
const std::array<LHCb::Detector::DeMuonGasGap, 4> test_all_gaps = det_ch.gaps();
unsigned int i = 0;
double zin, zout;
double zin = 0., zout = 0.;
for ( const auto& igap : test_all_gaps ) {
i++;
@@ -369,7 +369,7 @@ static long test_load_demuon( dd4hep::Detector& description, int argc, char** ar
// test listOfPhysChannels and related code
const std::array<LHCb::Detector::DeMuonGasGap, 4> test_all_gaps = det_ch.gaps();
unsigned int i = 0;
double zin, zout;
double zin = 0., zout = 0.;
for ( const auto& igap : test_all_gaps ) {
i++;
Loading