Skip to content

Commit

Permalink
Please consider the following formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild committed Jan 25, 2024
1 parent 3bddba7 commit f66b8fc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
17 changes: 8 additions & 9 deletions PWGLF/DataModel/LFStrangenessTables.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,13 +146,12 @@ DECLARE_SOA_COLUMN(Y, y, float); //! decay position Y
DECLARE_SOA_COLUMN(Z, z, float); //! decay position Z

// decay daughter positions for refit studies (specific purpose)
DECLARE_SOA_COLUMN(XPosAtDCA, xPosAtDCA, float); //! decay position X
DECLARE_SOA_COLUMN(YPosAtDCA, yPosAtDCA, float); //! decay position Y
DECLARE_SOA_COLUMN(ZPosAtDCA, zPosAtDCA, float); //! decay position Z
DECLARE_SOA_COLUMN(XNegAtDCA, xNegAtDCA, float); //! decay position X
DECLARE_SOA_COLUMN(YNegAtDCA, yNegAtDCA, float); //! decay position Y
DECLARE_SOA_COLUMN(ZNegAtDCA, zNegAtDCA, float); //! decay position Z

DECLARE_SOA_COLUMN(XPosAtDCA, xPosAtDCA, float); //! decay position X
DECLARE_SOA_COLUMN(YPosAtDCA, yPosAtDCA, float); //! decay position Y
DECLARE_SOA_COLUMN(ZPosAtDCA, zPosAtDCA, float); //! decay position Z
DECLARE_SOA_COLUMN(XNegAtDCA, xNegAtDCA, float); //! decay position X
DECLARE_SOA_COLUMN(YNegAtDCA, yNegAtDCA, float); //! decay position Y
DECLARE_SOA_COLUMN(ZNegAtDCA, zNegAtDCA, float); //! decay position Z

// Saved from finding: DCAs
DECLARE_SOA_COLUMN(DCAV0Daughters, dcaV0daughters, float); //! DCA between V0 daughters
Expand Down Expand Up @@ -411,8 +410,8 @@ DECLARE_SOA_EXTENDED_TABLE_USER(V0Cores, StoredV0Cores, "V0COREEXT",
v0data::Px, v0data::Py, v0data::Pz, v0data::Pt, v0data::P, v0data::Phi, v0data::Eta); // the table name has here to be the one with EXT which is not nice and under study

DECLARE_SOA_TABLE(V0TraPosAtDCAs, "AOD", "V0TRAPOSATDCAs", //! positions of tracks at their DCA for debug
v0data::XPosAtDCA, v0data::YPosAtDCA, v0data::ZPosAtDCA,
v0data::XNegAtDCA, v0data::YNegAtDCA, v0data::ZNegAtDCA);
v0data::XPosAtDCA, v0data::YPosAtDCA, v0data::ZPosAtDCA,
v0data::XNegAtDCA, v0data::YNegAtDCA, v0data::ZNegAtDCA);

DECLARE_SOA_TABLE_FULL(V0Covs, "V0Covs", "AOD", "V0COVS", //! V0 covariance matrices
v0data::PositionCovMat, v0data::MomentumCovMat, o2::soa::Marker<1>);
Expand Down
4 changes: 2 additions & 2 deletions PWGLF/TableProducer/lambdakzerobuilder.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -853,9 +853,9 @@ struct lambdakzeroBuilder {
v0candidate.cosPA,
v0candidate.dcav0topv,
V0.v0Type());
if(createV0PosAtDCAs)
if (createV0PosAtDCAs)
v0dauPositions(v0candidate.posPosition[0], v0candidate.posPosition[1], v0candidate.posPosition[2],
v0candidate.negPosition[0], v0candidate.negPosition[1], v0candidate.negPosition[2]);
v0candidate.negPosition[0], v0candidate.negPosition[1], v0candidate.negPosition[2]);
} else {
// place V0s built exclusively for the sake of cascades
// in a fully independent table (though identical) to make
Expand Down
8 changes: 4 additions & 4 deletions PWGLF/TableProducer/strangederivedbuilder.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ struct strangederivedbuilder {

//__________________________________________________
// Q-vectors
Produces<aod::StraFT0AQVs> StraFT0AQVs; // FT0A Q-vector
Produces<aod::StraFT0CQVs> StraFT0CQVs; // FT0C Q-vector
Produces<aod::StraFT0MQVs> StraFT0MQVs; // FT0M Q-vector
Produces<aod::StraFV0AQVs> StraFV0AQVs; // FV0A Q-vector
Produces<aod::StraFT0AQVs> StraFT0AQVs; // FT0A Q-vector
Produces<aod::StraFT0CQVs> StraFT0CQVs; // FT0C Q-vector
Produces<aod::StraFT0MQVs> StraFT0MQVs; // FT0M Q-vector
Produces<aod::StraFV0AQVs> StraFV0AQVs; // FV0A Q-vector

// histogram registry for bookkeeping
HistogramRegistry histos{"Histos", {}, OutputObjHandlingPolicy::AnalysisObject};
Expand Down

0 comments on commit f66b8fc

Please sign in to comment.