diff --git a/ACTSTracking/ACTSProcBase.hxx b/ACTSTracking/ACTSProcBase.hxx index 293cc96..ee27b73 100644 --- a/ACTSTracking/ACTSProcBase.hxx +++ b/ACTSTracking/ACTSProcBase.hxx @@ -61,12 +61,12 @@ class ACTSProcBase : public marlin::Processor { std::string _matFile{}; //! Path to tracker geometry file - std::string _tgeoFile = "data/MuSIC_v1.root"; + std::string _tgeoFile = "data/MuSIC_v2.root"; //! Path to tracker geometry json file - std::string _tgeodescFile = "data/MuSIC_v1.json"; + std::string _tgeodescFile = "data/MuSIC_v2.json"; - std::string _detSchema = "MuSIC_v1"; + std::string _detSchema = "MuSIC_v2"; std::shared_ptr geoIDMappingTool() const; diff --git a/src/ACTSProcBase.cxx b/src/ACTSProcBase.cxx index 93c1398..4d755a1 100644 --- a/src/ACTSProcBase.cxx +++ b/src/ACTSProcBase.cxx @@ -39,7 +39,7 @@ ACTSProcBase::ACTSProcBase(const std::string& procname) : Processor(procname) { registerProcessorParameter("TGeoDescFile", "Path to the JSON file describing the subdetectors.", _tgeodescFile, _tgeodescFile); - registerProcessorParameter("DetectorSchema", "Detector schema name (MuColl_v1, MuSIC_v1).", + registerProcessorParameter("DetectorSchema", "Detector schema name (MuColl_v1, MuSIC_v1, MuSIC_v2).", _detSchema, _detSchema); }