Skip to content

Commit

Permalink
custom to extra
Browse files Browse the repository at this point in the history
  • Loading branch information
martinunland committed Aug 29, 2024
1 parent e3112d6 commit b7d6075
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common/framework/include/OMSimInputData.hh
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ private:
enum class FileType {
IceCubeICE,
Scintillator,
Custom,
Extra,
Table,
Surface,
Material
Expand Down
4 changes: 2 additions & 2 deletions common/framework/src/OMSimInputData.cc
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ void OMSimInputData::processFile(const std::string &p_filePath,
case FileType::Scintillator:
dataFile.processSpecial(ScintillationProcessor::process);
break;
case FileType::Custom:
case FileType::Extra:
dataFile.processExtraProperties();
break;
case FileType::Table:
Expand Down Expand Up @@ -349,7 +349,7 @@ void OMSimInputData::scannDataDirectory()
const std::unordered_map<std::string, OMSimInputData::FileType> OMSimInputData::fileTypePrefixes = {
{"IceCubeICE", FileType::IceCubeICE},
{"Scint", FileType::Scintillator},
{"Custom", FileType::Custom},
{"Extra", FileType::Extra},
{"pmt_", FileType::Table},
{"usr_", FileType::Table},
{"Surf", FileType::Surface}};
Expand Down

0 comments on commit b7d6075

Please sign in to comment.