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
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 warning on line 1 in PWGUD/TableProducer/Converters/UDCollisionSelExtrasConverter.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/file-cpp]

Use lowerCamelCase or UpperCamelCase for names of C++ files. See the O2 naming conventions for details.
// 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 @@ -30,7 +30,7 @@

// Converts UDCollisions for version 000 to 001
struct UDCollisionSelExtrasConverter {
Produces<o2::aod::UDCollisionSelExtras_001> udCollisionSelExtras_001;

Check warning on line 33 in PWGUD/TableProducer/Converters/UDCollisionSelExtrasConverter.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.

void process(o2::aod::UDCollisionSelExtras_000 const& collisions)
{
Expand All @@ -46,7 +46,7 @@
0.0f, // dummy rate
0, // dummy trs
0, // dummy trofs
0); // dummy hmpr
0); // dummy hmpr
}
}
};
Expand Down
Loading