Skip to content

Commit

Permalink
updated EMCAL event selection for all the Jets process functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Archita-Dash committed Aug 18, 2024
1 parent 555df28 commit fc9474a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions PWGJE/Tasks/fulljetspectrapp.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ struct FullJetSpectrapp {
fillJetHistograms(jet, jet.eventWeight());
}
}
PROCESS_SWITCH(FullJetSpectrapp, processJetsMCDWeighted, "jet finder HF QA mcd on weighted events", false);
PROCESS_SWITCH(FullJetSpectrapp, processJetsMCDWeighted, "Full Jets at Detector Level on weighted events", false);

void processJetsMCP(typename JetTableMCPJoined::iterator const& jet, JetParticles const&, JetMcCollisions const&)
{
Expand All @@ -535,7 +535,7 @@ struct FullJetSpectrapp {
}
fillMCPHistograms(jet, jet.eventWeight());
}
PROCESS_SWITCH(FullJetSpectrapp, processJetsMCPWeighted, "jet finder HF QA mcp on weighted events", false);
PROCESS_SWITCH(FullJetSpectrapp, processJetsMCPWeighted, "Full Jets at Particle Level on weighted events", false);

void processTracks(soa::Filtered<EMCCollisions>::iterator const& collision, soa::Filtered<JetTracks> const& tracks, soa::Filtered<JetClusters> const& clusters)
{
Expand Down Expand Up @@ -571,7 +571,7 @@ struct FullJetSpectrapp {
// Fill Accepted events histos
fillTrackHistograms(tracks, clusters, 1.0);
}
PROCESS_SWITCH(FullJetSpectrapp, processTracks, "QA for fulljet tracks", false);
PROCESS_SWITCH(FullJetSpectrapp, processTracks, "Full Jet tracks", false);

void processJetsMCPMCDMatched(soa::Filtered<EMCCollisions>::iterator const& collision, JetTableMCDMatchedJoined const& mcdjets, JetTableMCPMatchedJoined const&, JetTracks const&, JetClusters const&, JetParticles const&)
{
Expand Down Expand Up @@ -607,7 +607,7 @@ struct FullJetSpectrapp {
fillMatchedHistograms<typename JetTableMCDMatchedJoined::iterator, JetTableMCPMatchedJoined>(mcdjet);
}
}
PROCESS_SWITCH(FullJetSpectrapp, processJetsMCPMCDMatched, "full jet finder MCP matched to MCD", false);
PROCESS_SWITCH(FullJetSpectrapp, processJetsMCPMCDMatched, "Full Jet finder MCP matched to MCD", false);

void processJetsMCPMCDMatchedWeighted(soa::Filtered<EMCCollisions>::iterator const& collision, JetTableMCDMatchedWeightedJoined const& mcdjets, JetTableMCPMatchedWeightedJoined const&, JetTracks const&, JetClusters const&, JetParticles const&)
{
Expand Down Expand Up @@ -643,7 +643,7 @@ struct FullJetSpectrapp {
fillMatchedHistograms<typename JetTableMCDMatchedWeightedJoined::iterator, JetTableMCPMatchedWeightedJoined>(mcdjet, mcdjet.eventWeight());
}
}
PROCESS_SWITCH(FullJetSpectrapp, processJetsMCPMCDMatchedWeighted, "full jet finder MCP matched to MCD on weighted events", false);
PROCESS_SWITCH(FullJetSpectrapp, processJetsMCPMCDMatchedWeighted, "Full Jet finder MCP matched to MCD on weighted events", false);

void processTracksWeighted(soa::Filtered<soa::Join<EMCCollisions, aod::JMcCollisionLbs>>::iterator const& collision,
aod::JMcCollisions const&,
Expand Down Expand Up @@ -683,7 +683,7 @@ struct FullJetSpectrapp {
// registry.fill(HIST("h_gaptrig_collisions"), 1.0, eventWeight);
fillTrackHistograms(tracks, clusters, eventWeight);
}
PROCESS_SWITCH(FullJetSpectrapp, processTracksWeighted, "QA for fulljet tracks weighted", false);
PROCESS_SWITCH(FullJetSpectrapp, processTracksWeighted, "Full Jet tracks weighted", false);

}; // struct

Expand Down

0 comments on commit fc9474a

Please sign in to comment.