We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f592208 commit 73ac089Copy full SHA for 73ac089
1 file changed
DataFormats/Detectors/Common/include/DetectorsCommonDataFormats/NameConf.h
@@ -69,6 +69,12 @@ class NameConf : public o2::conf::ConfigurableParamHelper<NameConf>
69
// Filename to for decoding dictionaries
70
static std::string getAlpideClusterDictionaryFileName(DId det, const std::string_view prefix = "", const std::string_view ext = "");
71
72
+ // Temporary alias to not crash the QC: Filename to for decoding dictionaries
73
+ static std::string getDictionaryFileName(DId det, const std::string_view prefix = "", const std::string_view ext = "")
74
+ {
75
+ return getAlpideClusterDictionaryFileName(det, prefix, ext);
76
+ }
77
+
78
// Filename to store material LUT file
79
static std::string getMatLUTFileName(const std::string_view prefix = "");
80
0 commit comments