Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion PWGJE/TableProducer/jetTaggerHF.cxx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.

Check failure on line 1 in PWGJE/TableProducer/jetTaggerHF.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/o2-task]

Specify task name only when it cannot be derived from the struct name. Only append to the default name.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
Expand Down Expand Up @@ -94,6 +94,7 @@
Configurable<float> minSignImpXYSig{"minSignImpXYSig", -40.0, "minimum of signed impact parameter significance"};
Configurable<float> tagPointForIP{"tagPointForIP", 2.5, "tagging working point for IP"};
Configurable<float> tagPointForIPxyz{"tagPointForIPxyz", 2.5, "tagging working point for IP xyz"};
Configurable<int64_t> timestampCCDBForIP{"timestampCCDBForIP", -1, "timestamp of the resolution function file for IP method used to query in CCDB"};
// configuration about SV method
Configurable<float> tagPointForSV{"tagPointForSV", 40, "tagging working point for SV"};
Configurable<float> tagPointForSVxyz{"tagPointForSVxyz", 40, "tagging working point for SV xyz"};
Expand Down Expand Up @@ -341,7 +342,7 @@
return;
}
for (int i = 0; i < mIPmethodResolutionFunctionSize; i++) {
targetVec.push_back(ccdbApi.retrieveFromTFileAny<TF1>(paths[i], metadata, -1));
targetVec.push_back(ccdbApi.retrieveFromTFileAny<TF1>(paths[i], metadata, timestampCCDBForIP));
}
};

Expand Down Expand Up @@ -696,6 +697,6 @@
{

return WorkflowSpec{
adaptAnalysisTask<JetTaggerhfDataCharged>(cfgc, SetDefaultProcesses{}, TaskName{"jet-taggerhf-data-charged"}), // o2-linter: disable=name/o2-task

Check failure on line 700 in PWGJE/TableProducer/jetTaggerHF.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/o2-task]

Specified task name jet-taggerhf-data-charged and the struct name JetTaggerhfDataCharged produce the same device name jet-taggerhf-data-charged. TaskName is redundant.
adaptAnalysisTask<JetTaggerhfMCDCharged>(cfgc, SetDefaultProcesses{}, TaskName{"jet-taggerhf-mcd-charged"})}; // o2-linter: disable=name/o2-task

Check failure on line 701 in PWGJE/TableProducer/jetTaggerHF.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/o2-task]

Device names jet-taggerhf-mcd-charged and jet-taggerhf-m-c-d-charged generated from the specified task name jet-taggerhf-mcd-charged and from the struct name JetTaggerhfMCDCharged, respectively, differ in hyphenation. Consider fixing capitalisation of the struct name to JetTaggerhfMcdCharged and removing TaskName.
}
Loading