Skip to content
Merged
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
4 changes: 2 additions & 2 deletions PWGHF/TableProducer/derivedDataCreatorBplusToD0Pi.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
o2::aod::HfBplusMcCollIds,
o2::aod::HfBplusMcRCollIds,
o2::aod::HfBplusPBases,
o2::aod::HfBplusPIds
> rowsCommon;
o2::aod::HfBplusPIds>
rowsCommon;
// Candidates
Produces<o2::aod::HfBplusPars> rowCandidatePar;
Produces<o2::aod::HfBplusParD0s> rowCandidateParD0;
Expand All @@ -65,7 +65,7 @@
Produces<o2::aod::HfBplusMcs> rowCandidateMc;

// Switches for filling tables
ConfigurableHfDerivedData confDerData;

Check warning on line 68 in PWGHF/TableProducer/derivedDataCreatorBplusToD0Pi.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<bool> fillCandidatePar{"fillCandidatePar", true, "Fill candidate parameters"};
Configurable<bool> fillCandidateParD0{"fillCandidateParD0", true, "Fill D0 candidate parameters"};
Configurable<bool> fillCandidateParE{"fillCandidateParE", true, "Fill candidate extended parameters"};
Expand Down
4 changes: 2 additions & 2 deletions PWGHF/TableProducer/derivedDataCreatorD0ToKPi.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
o2::aod::HfD0McCollIds,
o2::aod::HfD0McRCollIds,
o2::aod::HfD0PBases,
o2::aod::HfD0PIds
> rowsCommon;
o2::aod::HfD0PIds>
rowsCommon;
// Candidates
Produces<o2::aod::HfD0Pars> rowCandidatePar;
Produces<o2::aod::HfD0ParEs> rowCandidateParE;
Expand All @@ -63,7 +63,7 @@
Produces<o2::aod::HfD0Mcs> rowCandidateMc;

// Switches for filling tables
ConfigurableHfDerivedData confDerData;

Check warning on line 66 in PWGHF/TableProducer/derivedDataCreatorD0ToKPi.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<bool> fillCandidatePar{"fillCandidatePar", true, "Fill candidate parameters"};
Configurable<bool> fillCandidateParE{"fillCandidateParE", true, "Fill candidate extended parameters"};
Configurable<bool> fillCandidateSel{"fillCandidateSel", true, "Fill candidate selection flags"};
Expand Down
4 changes: 2 additions & 2 deletions PWGHF/TableProducer/derivedDataCreatorLcToPKPi.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
o2::aod::HfLcMcCollIds,
o2::aod::HfLcMcRCollIds,
o2::aod::HfLcPBases,
o2::aod::HfLcPIds
> rowsCommon;
o2::aod::HfLcPIds>
rowsCommon;
// Candidates
Produces<o2::aod::HfLcPars> rowCandidatePar;
Produces<o2::aod::HfLcParEs> rowCandidateParE;
Expand All @@ -61,7 +61,7 @@
Produces<o2::aod::HfLcMcs> rowCandidateMc;

// Switches for filling tables
ConfigurableHfDerivedData confDerData;

Check warning on line 64 in PWGHF/TableProducer/derivedDataCreatorLcToPKPi.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<bool> fillCandidatePar{"fillCandidatePar", true, "Fill candidate parameters"};
Configurable<bool> fillCandidateParE{"fillCandidateParE", true, "Fill candidate extended parameters"};
Configurable<bool> fillCandidateSel{"fillCandidateSel", true, "Fill candidate selection flags"};
Expand Down
3 changes: 1 addition & 2 deletions PWGHF/Utils/utilsDerivedData.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
}
}

struct ConfigurableHfDerivedData : o2::framework::ConfigurableGroup {

Check warning on line 52 in PWGHF/Utils/utilsDerivedData.h

View workflow job for this annotation

GitHub Actions / O2 linter

[pwghf/name/struct-class]

Names of PWGHF structs and classes must start with "Hf".
// Candidates
o2::framework::Configurable<bool> fillCandidateBase{"fillCandidateBase", true, "Fill candidate base properties"};
// Collisions
Expand All @@ -72,9 +72,8 @@
typename HfMcCollIds,
typename HfMcRCollIds,
typename HfPBases,
typename HfPIds
>
typename HfPIds>
struct ProducesHfDerivedData : o2::framework::ProducesGroup {

Check warning on line 76 in PWGHF/Utils/utilsDerivedData.h

View workflow job for this annotation

GitHub Actions / O2 linter

[pwghf/name/struct-class]

Names of PWGHF structs and classes must start with "Hf".
// Candidates
o2::framework::Produces<HfBases> rowCandidateBase;
// Collisions
Expand All @@ -88,7 +87,7 @@
o2::framework::Produces<HfPBases> rowParticleBase;
o2::framework::Produces<HfPIds> rowParticleId;

ConfigurableHfDerivedData const* conf;

Check warning on line 90 in PWGHF/Utils/utilsDerivedData.h

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.)
std::map<int, std::vector<int>> matchedCollisions; // indices of derived reconstructed collisions matched to the global indices of MC collisions
std::map<int, bool> hasMcParticles; // flags for MC collisions with HF particles

Expand Down
Loading