Skip to content

Commit 23ef8e1

Browse files
committed
Remove duplicate includes. Tweak config
1 parent a384c3d commit 23ef8e1

4 files changed

Lines changed: 7 additions & 6 deletions

File tree

Mu2eKinKal/src/RegrowLoopHelix_module.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
#include "Offline/GlobalConstantsService/inc/ParticleDataList.hh"
2222
#include "Offline/DataProducts/inc/SurfaceId.hh"
2323
#include "Offline/KinKalGeom/inc/KinKalGeom.hh"
24-
#include "Offline/GlobalConstantsService/inc/GlobalConstantsHandle.hh"
25-
#include "Offline/GlobalConstantsService/inc/ParticleDataList.hh"
2624
// utiliites
2725
#include "Offline/GeometryService/inc/GeomHandle.hh"
2826
#include "Offline/TrackerGeom/inc/Tracker.hh"

Print/fcl/printPrimaryParticle.fcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ physics :{
1818
printModule : {
1919
module_type : PrintModule
2020
primaryParticlePrinter : {
21-
verbose : 2
21+
verbose : 1
2222
}
2323
} # printModule
2424

2525

2626
} # analyzers
2727

28-
ana : [ printModule, printProductList ]
28+
ana : [ printModule]
2929
end_paths : [ ana ]
3030

3131
}

Print/inc/PrimaryParticlePrinter.hh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ namespace mu2e {
1919
class PrimaryParticlePrinter : public ProductPrinter {
2020
public:
2121
PrimaryParticlePrinter() {}
22-
PrimaryParticlePrinter(const Config& conf) : ProductPrinter(conf) {}
22+
PrimaryParticlePrinter(const Config& conf) : ProductPrinter(conf) {
23+
gprint_.setVerbose(verbose());
24+
sprint_.setVerbose(verbose());
25+
}
2326

2427
// all the ways to request a printout
2528
void Print(art::Event const& event, std::ostream& os = std::cout) override;

TrkReco/fcl/prolog.fcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ TrkReco: { @table::TrkReco
139139
SelectReflections: {
140140
module_type : SelectReflections
141141
Surface : TT_Front
142-
MaxDeltaT : 15 # ns
142+
MaxDeltaT : 5 # ns
143143
MaxDeltaP : 15 # MeV
144144
# optionally only merge selected candidates
145145
# a simple selector is used here, but any selector implemented as a tool can be used

0 commit comments

Comments
 (0)