Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions fcl/gen/mevprtl/higgs/dissonant_higgs_gen.fcl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "dissonant_higgs.fcl"
#include "beamgates_icarus.fcl"
#include "beamspilltimings.fcl"
# service configuration
#
#include "services_icarus_simulation.fcl"
Expand Down
2 changes: 1 addition & 1 deletion icaruscode/TPC/Calorimetry/NormalizeTPCSQL_tool.cc
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ icarus::calo::NormalizeTPCSQL::ScaleInfo icarus::calo::NormalizeTPCSQL::GetScale
double icarus::calo::NormalizeTPCSQL::Normalize(double dQdx, const art::Event &e,
const recob::Hit &hit, const geo::Point_t &location, const geo::Vector_t &direction, double t0) {
// Get the info
ScaleInfo i = GetScaleInfo(e.time().timeHigh());
ScaleInfo i = GetScaleInfo(e.id().runID().run());

// Lookup the TPC, cryo
unsigned tpc = hit.WireID().TPC;
Expand Down
2 changes: 1 addition & 1 deletion icaruscode/TPC/Calorimetry/NormalizeYZSQL_tool.cc
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ const icarus::calo::NormalizeYZSQL::ScaleInfo& icarus::calo::NormalizeYZSQL::Get
double icarus::calo::NormalizeYZSQL::Normalize(double dQdx, const art::Event &e,
const recob::Hit &hit, const geo::Point_t &location, const geo::Vector_t &direction, double t0) {
// Get the info
ScaleInfo const& i = GetScaleInfo(e.time().timeHigh());
ScaleInfo const& i = GetScaleInfo(e.id().runID().run());

// compute itpc
int cryo = hit.WireID().Cryostat;
Expand Down
4 changes: 2 additions & 2 deletions icaruscode/TPC/Calorimetry/normtools_icarus.fcl
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ yznorm_sql: {
Verbose: false
}

icarus_calonormtools: [@local::driftnorm, @local::yznorm, @local::tpcgain]
# icarus_calonormtools: [@local::driftnorm_sql, @local::yznorm_sql, @local::tpcgain_sql]
#icarus_calonormtools: [@local::driftnorm, @local::yznorm, @local::tpcgain]
icarus_calonormtools: [@local::driftnorm_sql, @local::yznorm_sql, @local::tpcgain_sql]

# Gain with angular dep. recombination
# Assume equal on planes -- this is __wrong__ -- will need to be fixed when they are calibrated
Expand Down