We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 940f794 commit e8895c8Copy full SHA for e8895c8
1 file changed
sbndcode/Commissioning/HitDumper_module.cc
@@ -82,8 +82,6 @@
82
#include <string>
83
#include <cmath>
84
85
-const int MAX_INT = std::numeric_limits<int>::max();
86
-const long int TIME_CORRECTION = (long int) std::numeric_limits<int>::max() * 2;
87
const int DEFAULT_VALUE = -9999;
88
89
enum CRTOrientation {
@@ -435,6 +433,9 @@ class Hitdumper : public art::EDAnalyzer {
435
433
art::ServiceHandle<geo::AuxDetGeometry> fAuxDetGeoService;
436
434
const geo::AuxDetGeometry* fAuxDetGeo;
437
const geo::AuxDetGeometryCore* fAuxDetGeoCore;
+
+ const int MAX_INT = std::numeric_limits<int>::max();
438
+ const long int TIME_CORRECTION = (long int) std::numeric_limits<int>::max() * 2;
439
};
440
441
0 commit comments