@@ -107,7 +107,7 @@ struct GammaJetTreeProducer {
107107 const o2Axis energyAxis{100 , 0 , 100 , " E (GeV)" };
108108 const o2Axis m02Axis{100 , 0 , 3 , " m02" };
109109 const o2Axis etaAxis{100 , -1 , 1 , " #eta" };
110- const o2Axis phiAxis{100 , 0 , 2 * TMath::Pi (), " #phi" };
110+ const o2Axis phiAxis{100 , 0 , 2 * TMath::Pi (), " #phi" };
111111 const o2Axis occupancyAxis{300 , 0 , 30000 , " occupancy" };
112112 mHistograms .add (" clusterE" , " Energy of cluster" , o2HistType::kTH1F , {energyAxis});
113113 mHistograms .add (" trackPt" , " pT of track" , o2HistType::kTH1F , {ptAxis});
@@ -264,7 +264,8 @@ struct GammaJetTreeProducer {
264264 {
265265 // event selection
266266 int32_t storedColIndex = getStoredColIndex (collision);
267- if (storedColIndex == -1 ) return ;
267+ if (storedColIndex == -1 )
268+ return ;
268269
269270 // eventsTable(collision.multiplicity(), collision.centrality(), collision.rho(), collision.eventSel(), collision.trackOccupancyInTimeRange(), collision.alias_raw());
270271 // collisionMapping[collision.globalIndex()] = eventsTable.lastIndex();
@@ -296,7 +297,7 @@ struct GammaJetTreeProducer {
296297 auto emcTracksPerTrack = emctracks.sliceBy (EMCTrackPerTrack, track.globalIndex ());
297298 auto emcTrack = emcTracksPerTrack.iteratorAt (0 );
298299 // find closest track that still has E/p < trackMatchingEoverP
299- if (cluster.energy ()/ track.p () > trackMatchingEoverP) {
300+ if (cluster.energy () / track.p () > trackMatchingEoverP) {
300301 continue ;
301302 } else {
302303 dEta = cluster.eta () - emcTrack.etaEmcal ();
@@ -321,7 +322,8 @@ struct GammaJetTreeProducer {
321322 {
322323 // event selection
323324 int32_t storedColIndex = getStoredColIndex (collision);
324- if (storedColIndex == -1 ) return ;
325+ if (storedColIndex == -1 )
326+ return ;
325327 float leadingTrackPt = 0 ;
326328 ushort nconst = 0 ;
327329 // loop over charged jets
0 commit comments