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 PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@

namespace o2::aod
{
namespace MultiplicityNch

Check warning on line 39 in PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/namespace]

Use snake_case for names of namespaces. Double underscores are not allowed.
{
DECLARE_SOA_COLUMN(Multiplicity, mult, int);

Check warning on line 41 in PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/o2-column]

Use UpperCamelCase for names of O2 columns and matching lowerCamelCase names for their getters.
}
DECLARE_SOA_TABLE(Multiplicity, "AOD", "MULTIPLICITY",
MultiplicityNch::Multiplicity);
Expand All @@ -64,7 +64,7 @@
using AodCollisions = soa::Join<aod::Collisions, aod::EvSel>; // aod::CentFT0Cs
using AodTracks = soa::Filtered<soa::Join<aod::Tracks, aod::TrackSelection, aod::TracksExtra>>;

Produces<aod::Multiplicity> MultiplicityNch;

Check warning on line 67 in PWGCF/TwoParticleCorrelations/Tasks/corrSparse.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[name/function-variable]

Use lowerCamelCase for names of functions and variables.

void process(AodCollisions::iterator const& collision, AodTracks const& tracks)
{
Expand Down Expand Up @@ -192,7 +192,7 @@

void processSame(AodCollisions::iterator const& collision, AodTracks const& tracks)
{
//LOGF(info, "Process Same | Nch: %i | Mult from column %i", tracks.size(), collision.mult());
// LOGF(info, "Process Same | Nch: %i | Mult from column %i", tracks.size(), collision.mult());
registry.fill(HIST("eventcount"), SameEvent); // because its same event i put it in the 1 bin
fillYield(collision, tracks);
fillCorrelations<CorrelationContainer::kCFStepReconstructed>(tracks, tracks, collision.posZ(), SameEvent, tracks.size()); // fill the SE histogram and Sparse
Expand Down
Loading