Skip to content

Commit

Permalink
fix few inconsistencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Davide Zuliani INFN Padova - PostDoc committed Oct 3, 2024
1 parent db7cd63 commit 9d339e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ACTSTracking/ACTSProcBase.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -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<ACTSTracking::GeometryIdMappingTool> geoIDMappingTool() const;

Expand Down
2 changes: 1 addition & 1 deletion src/ACTSProcBase.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 9d339e7

Please sign in to comment.