Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Please consider the following formatting changes to #7526 #13

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions PWGLF/DataModel/LFStrangenessTables.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ DECLARE_SOA_TABLE_VERSIONED(StraRawCents_004, "AOD", "STRARAWCENTS", 4, //!
mult::MultZNA, mult::MultZNC, mult::MultZEM1, // ZDC signals
mult::MultZEM2, mult::MultZPA, mult::MultZPC,
evsel::NumTracksInTimeRange); // add occupancy as extra
DECLARE_SOA_TABLE(StraEvSels_000, "AOD", "STRAEVSELS", //! event selection: sel8
DECLARE_SOA_TABLE(StraEvSels_000, "AOD", "STRAEVSELS", //! event selection: sel8
evsel::Sel8, evsel::Selection);
DECLARE_SOA_TABLE_VERSIONED(StraEvSels_001, "AOD", "STRAEVSELS", 1, //! debug information
evsel::Sel8, evsel::Selection, //! event selection: sel8
DECLARE_SOA_TABLE_VERSIONED(StraEvSels_001, "AOD", "STRAEVSELS", 1, //! debug information
evsel::Sel8, evsel::Selection, //! event selection: sel8
mult::MultFT0A, mult::MultFT0C, mult::MultFV0A, // FIT detectors
mult::MultFDDA, mult::MultFDDC,
mult::MultNTracksPVeta1, // track multiplicities with eta cut for INEL>0
Expand All @@ -112,7 +112,7 @@ DECLARE_SOA_TABLE_VERSIONED(StraEvSels_001, "AOD", "STRAEVSELS", 1, //! debug in
stracollision::TotalFT0AmplitudeC<mult::MultFT0C>,
stracollision::EnergyCommonZNA<mult::MultZNA>,
stracollision::EnergyCommonZNC<mult::MultZNC>,
udcollision::GapSide); // UPC info: 0 for side A, 1 for side C, 2 for both sides, 3 neither A or C, 4 not enough or too many pv contributors
udcollision::GapSide); // UPC info: 0 for side A, 1 for side C, 2 for both sides, 3 neither A or C, 4 not enough or too many pv contributors
DECLARE_SOA_TABLE(StraFT0AQVs, "AOD", "STRAFT0AQVS", //! t0a Qvec
qvec::QvecFT0ARe, qvec::QvecFT0AIm, qvec::SumAmplFT0A);
DECLARE_SOA_TABLE(StraFT0CQVs, "AOD", "STRAFT0CQVS", //! t0c Qvec
Expand Down
6 changes: 3 additions & 3 deletions PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ struct strangederivedbuilder {
strangeColl(collision.posX(), collision.posY(), collision.posZ());
strangeCents(collision.centFT0M(), collision.centFT0A(),
collision.centFT0C(), collision.centFV0A());
strangeEvSels(collision.sel8(), collision.selection_raw(),
strangeEvSels(collision.sel8(), collision.selection_raw(),
collision.multFT0A() * static_cast<float>(fillRawFT0A),
collision.multFT0C() * static_cast<float>(fillRawFT0C),
collision.multFV0A() * static_cast<float>(fillRawFV0A),
Expand Down Expand Up @@ -348,7 +348,7 @@ struct strangederivedbuilder {
strangeColl(collision.posX(), collision.posY(), collision.posZ());
strangeCents(collision.centFT0M(), collision.centFT0A(),
centrality, collision.centFV0A());
strangeEvSels(collision.sel8(), collision.selection_raw(),
strangeEvSels(collision.sel8(), collision.selection_raw(),
collision.multFT0A() * static_cast<float>(fillRawFT0A),
collision.multFT0C() * static_cast<float>(fillRawFT0C),
collision.multFV0A() * static_cast<float>(fillRawFV0A),
Expand Down Expand Up @@ -445,7 +445,7 @@ struct strangederivedbuilder {
strangeCollLabels(collision.mcCollisionId());
strangeCents(collision.centFT0M(), collision.centFT0A(),
centrality, collision.centFV0A());
strangeEvSels(collision.sel8(), collision.selection_raw(),
strangeEvSels(collision.sel8(), collision.selection_raw(),
collision.multFT0A() * static_cast<float>(fillRawFT0A),
collision.multFT0C() * static_cast<float>(fillRawFT0C),
collision.multFV0A() * static_cast<float>(fillRawFV0A),
Expand Down
Loading