Skip to content

Commit 97524cf

Browse files
authored
add FIT to the list of permitted detector (#1764)
1 parent b03622f commit 97524cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Framework/src/InfrastructureSpecReader.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ std::string InfrastructureSpecReader::validateDetectorName(std::string name)
379379
int nDetectors = 17;
380380
const char* detNames[17] = // once we can use DetID, remove this hard-coded list
381381
{ "ITS", "TPC", "TRD", "TOF", "PHS", "CPV", "EMC", "HMP", "MFT", "MCH", "MID", "ZDC", "FT0", "FV0", "FDD", "ACO", "FOC" };
382-
std::vector<std::string> permitted = { "MISC", "DAQ", "GENERAL", "TST", "BMK", "CTP", "TRG", "DCS", "GLO" };
382+
std::vector<std::string> permitted = { "MISC", "DAQ", "GENERAL", "TST", "BMK", "CTP", "TRG", "DCS", "GLO", "FIT" };
383383
for (auto i = 0; i < nDetectors; i++) {
384384
permitted.emplace_back(detNames[i]);
385385
// permitted.push_back(o2::detectors::DetID::getName(i));

0 commit comments

Comments
 (0)