Skip to content
Closed
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
2 changes: 1 addition & 1 deletion Common/Tasks/zdcTableReader.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 Common/Tasks/zdcTableReader.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/workflow-file]

Name of a workflow file must match the name of the main struct in it (without the PWG prefix). (Class implementation files should be in "Core" directories.)
// 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 @@ -40,12 +40,12 @@
Configurable<int> nBinsAmp{"nBinsAmp", 1025, "n bins 4 ZDC amplitudes"};
Configurable<int> nBinsTDC{"nBinsTDC", 480, "n bins 4 TDCs"};
Configurable<int> nBinsFit{"nBinsFit", 1000, "n bins 4 FIT"};
Configurable<float> MaxZN{"MaxZN", 4099.5, "Max 4 ZN histos"};

Check failure on line 43 in Common/Tasks/zdcTableReader.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/configurable]

Use lowerCamelCase for names of configurables and use the same name for the struct member as for the JSON string. (Declare the type and names on the same line.)
Configurable<float> MaxZP{"MaxZP", 3099.5, "Max 4 ZP histos"};

Check failure on line 44 in Common/Tasks/zdcTableReader.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/configurable]

Use lowerCamelCase for names of configurables and use the same name for the struct member as for the JSON string. (Declare the type and names on the same line.)
Configurable<float> MaxZEM{"MaxZEM", 3099.5, "Max 4 ZEM histos"};

Check failure on line 45 in Common/Tasks/zdcTableReader.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/configurable]

Use lowerCamelCase for names of configurables and use the same name for the struct member as for the JSON string. (Declare the type and names on the same line.)
//
Configurable<float> MaxMultFV0{"MaxMultFV0", 3000, "Max 4 FV0 histos"};

Check failure on line 47 in Common/Tasks/zdcTableReader.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/configurable]

Use lowerCamelCase for names of configurables and use the same name for the struct member as for the JSON string. (Declare the type and names on the same line.)
Configurable<float> MaxMultFT0{"MaxMultFT0", 3000, "Max 4 FT0 histos"};

Check failure on line 48 in Common/Tasks/zdcTableReader.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/configurable]

Use lowerCamelCase for names of configurables and use the same name for the struct member as for the JSON string. (Declare the type and names on the same line.)
//
HistogramRegistry registry{"Histos", {}, OutputObjHandlingPolicy::AnalysisObject};

Expand Down Expand Up @@ -130,7 +130,7 @@
auto centrFT0A = zdc.centralityFt0a();
auto centrFT0M = zdc.centralityFt0m();
auto timestamp = zdc.timestamp();
//auto selectionBits = zdc.selectionBits();
// auto selectionBits = zdc.selectionBits();

if ((useZvtx && (zvtx < zVval)) || !useZvtx) {
registry.get<TH1>(HIST("hZNApmc"))->Fill(zna);
Expand Down
Loading