Skip to content

Commit

Permalink
Merge pull request #1 from alibuild/alibot-cleanup-7367
Browse files Browse the repository at this point in the history
Please consider the following formatting changes to AliceO2Group#7367
  • Loading branch information
fjonasALICE authored Sep 4, 2024
2 parents c5c45e7 + 960e409 commit 19ccb54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PWGJE/DataModel/GammaJetAnalysisTree.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ using GjEvent = GjEvents::iterator;

namespace gjgamma
{
DECLARE_SOA_INDEX_COLUMN(GjEvent, gjevent); //! event index
DECLARE_SOA_INDEX_COLUMN(GjEvent, gjevent); //! event index
DECLARE_SOA_COLUMN(Energy, energy, float); //! cluster energy (GeV)
DECLARE_SOA_COLUMN(Eta, eta, float); //! cluster pseudorapidity (calculated using vertex)
DECLARE_SOA_COLUMN(Phi, phi, float); //! cluster azimuthal angle (calculated using vertex)
Expand Down
4 changes: 2 additions & 2 deletions PWGJE/Tasks/gammajettreeproducer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ struct GammaJetTreeProducer {
// an integer instead
Filter clusterDefinitionSelection = (o2::aod::jcluster::definition == mClusterDefinition);
// Process clusters
void processClusters(soa::Join<JetCollisions,aod::BkgChargedRhos, aod::JCollisionBCs>::iterator const& collision, aod::JBCs const&, selectedClusters const& clusters, JetTracks const& tracks)
void processClusters(soa::Join<JetCollisions, aod::BkgChargedRhos, aod::JCollisionBCs>::iterator const& collision, aod::JBCs const&, selectedClusters const& clusters, JetTracks const& tracks)
{
if (!isEventAccepted(collision)) {
return;
Expand Down Expand Up @@ -297,6 +297,6 @@ struct GammaJetTreeProducer {
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
{
WorkflowSpec workflow{
adaptAnalysisTask<GammaJetTreeProducer>(cfgc, TaskName{"gamma-jet-tree-producer"}, SetDefaultProcesses{{{"processClearMaps",true},{"processClusters", true}, {"processChargedJets", true}}})};
adaptAnalysisTask<GammaJetTreeProducer>(cfgc, TaskName{"gamma-jet-tree-producer"}, SetDefaultProcesses{{{"processClearMaps", true}, {"processClusters", true}, {"processChargedJets", true}}})};
return workflow;
}

0 comments on commit 19ccb54

Please sign in to comment.