Skip to content

Commit 8b6ca75

Browse files
Andreas MikalsenAndreas Mikalsen
authored andcommitted
Fix formatting and add comment with description
1 parent c23f83c commit 8b6ca75

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

PWGDQ/Tasks/dqEfficiency_withAssoc.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ void PrintBitMap(TMap map, int nbits)
275275
struct AnalysisEventSelection {
276276
Produces<aod::EventCuts> eventSel;
277277
Produces<aod::MixingHashes> hash;
278-
Produces<aod::StoredReducedEvents> JetEvents;
278+
Produces<aod::StoredReducedEvents> JetEvents;
279279
OutputObj<THashList> fOutputList{"output"};
280280
Configurable<std::string> fConfigMixingVariables{"cfgMixingVars", "", "Mixing configs separated by a comma, default no mixing"};
281281
Configurable<std::string> fConfigEventCuts{"cfgEventCuts", "eventStandard", "Event selection"};
@@ -497,7 +497,7 @@ struct AnalysisEventSelection {
497497
runEventSelection<gkEventFillMap>(events, mcEvents);
498498
publishSelections<gkEventFillMap>(events);
499499
}
500-
void processFillEvents(MyEvents const& events)
500+
void processFillEvents(MyEvents const& events) // Used to forward the event table from tablemaker, typical use for now is jet analysis.
501501
{
502502
for (auto& event : events) {
503503
JetEvents(event.tag_raw(),

PWGDQ/Tasks/tableReader_withAssoc.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ struct AnalysisEventSelection {
578578
runEventSelection<gkEventFillMapWithQvectorCentr>(events);
579579
publishSelections<gkEventFillMapWithQvectorCentr>(events);
580580
}
581-
void processFillEvents(MyEventsBasic const& events)
581+
void processFillEvents(MyEventsBasic const& events) // Used to forward the event table from tablemaker, typical use for now is jet analysis.
582582
{
583583
for (auto& event : events) {
584584
JetEvents(event.tag_raw(),

0 commit comments

Comments
 (0)