1010// or submit itself to any jurisdiction.
1111//
1212// /
13+ // / \file dndetaMFTPbPb.cxx
1314// / \brief Task for calculating dNdeta in Pb-Pb collisions using MFT detector
1415// / \author Gyula Bencedi, gyula.bencedi@cern.ch
1516// / \since Nov 2024
@@ -134,7 +135,7 @@ struct DndetaMFTPbPb {
134135 " centralityBins" ,
135136 {VARIABLE_WIDTH, 0 , 5 , 10 , 20 , 30 , 40 , 50 , 60 , 70 , 80 , 90 , 100 },
136137 " Centrality" };
137- ConfigurableAxis IrBins{ " IrBins " , {500 , 0 , 50 }, " Interaction rate (kHz)" };
138+ ConfigurableAxis irBins{ " irBins " , {500 , 0 , 50 }, " Interaction rate (kHz)" };
138139
139140 Service<o2::framework::O2DatabasePDG> pdg;
140141
@@ -247,7 +248,7 @@ struct DndetaMFTPbPb {
247248 x->SetBinLabel (2 , " Selected" );
248249
249250 qaregistry.add (" hOccIRate" , " hOccIRate" , HistType::kTH2F ,
250- {occupancyAxis, IrBins });
251+ {occupancyAxis, irBins });
251252
252253 registry.add ({" Events/NtrkZvtx" ,
253254 " ; N_{trk}; Z_{vtx} (cm); occupancy" ,
@@ -333,7 +334,7 @@ struct DndetaMFTPbPb {
333334 hstat->GetAxis (0 )->SetBinLabel (2 , " Selected" );
334335
335336 qaregistry.add (" hCentOccIRate" , " hCentOccIRate" , HistType::kTHnSparseF ,
336- {centralityAxis, occupancyAxis, IrBins });
337+ {centralityAxis, occupancyAxis, irBins });
337338
338339 qaregistry.add ({" Events/Centrality/hCent" ,
339340 " ; centrality; occupancy" ,
@@ -1231,8 +1232,7 @@ struct DndetaMFTPbPb {
12311232 processDatawBestTracks<CollsCentFT0C>(collision, tracks, besttracks, bcs);
12321233 }
12331234
1234- PROCESS_SWITCH (
1235- DndetaMFTPbPb, processDatawBestTracksCentFT0C,
1235+ PROCESS_SWITCH (DndetaMFTPbPb, processDatawBestTracksCentFT0C,
12361236 " Count tracks in FT0C centrality bins based on BestCollisionsFwd table" ,
12371237 false );
12381238
@@ -1259,8 +1259,7 @@ struct DndetaMFTPbPb {
12591259 processDatawBestTracks<CollsCentFT0M>(collision, tracks, besttracks, bcs);
12601260 }
12611261
1262- PROCESS_SWITCH (
1263- DndetaMFTPbPb, processDatawBestTracksCentFT0M,
1262+ PROCESS_SWITCH (DndetaMFTPbPb, processDatawBestTracksCentFT0M,
12641263 " Count tracks in FT0M centrality bins based on BestCollisionsFwd table" ,
12651264 false );
12661265
@@ -1286,8 +1285,7 @@ struct DndetaMFTPbPb {
12861285 processDatawBestTracks<CollsCentMFT>(collision, tracks, besttracks, bcs);
12871286 }
12881287
1289- PROCESS_SWITCH (
1290- DndetaMFTPbPb, processDatawBestTracksCentMFT,
1288+ PROCESS_SWITCH (DndetaMFTPbPb, processDatawBestTracksCentMFT,
12911289 " Count tracks in MFT centrality bins based on BestCollisionsFwd table" ,
12921290 false );
12931291
@@ -1622,8 +1620,7 @@ struct DndetaMFTPbPb {
16221620 mccollision, collisions, particles, tracks, besttracks);
16231621 }
16241622
1625- PROCESS_SWITCH (
1626- DndetaMFTPbPb, processMCwBestTracksCentFT0C,
1623+ PROCESS_SWITCH (DndetaMFTPbPb, processMCwBestTracksCentFT0C,
16271624 " Count MC particles in FT0C centrality bins using aod::BestCollisionsFwd" ,
16281625 false );
16291626
@@ -1653,8 +1650,7 @@ struct DndetaMFTPbPb {
16531650 mccollision, collisions, particles, tracks, besttracks);
16541651 }
16551652
1656- PROCESS_SWITCH (
1657- DndetaMFTPbPb, processMCwBestTracksCentFT0M,
1653+ PROCESS_SWITCH (DndetaMFTPbPb, processMCwBestTracksCentFT0M,
16581654 " Count MC particles in FT0M centrality bins using aod::BestCollisionsFwd" ,
16591655 false );
16601656
@@ -1684,8 +1680,7 @@ struct DndetaMFTPbPb {
16841680 mccollision, collisions, particles, tracks, besttracks);
16851681 }
16861682
1687- PROCESS_SWITCH (
1688- DndetaMFTPbPb, processMCwBestTracksCentMFT,
1683+ PROCESS_SWITCH (DndetaMFTPbPb, processMCwBestTracksCentMFT,
16891684 " Count MC particles in MFT centrality bins using aod::BestCollisionsFwd" ,
16901685 false );
16911686
@@ -1845,8 +1840,7 @@ struct DndetaMFTPbPb {
18451840 particles, tracks);
18461841 }
18471842
1848- PROCESS_SWITCH (
1849- DndetaMFTPbPb, processTrkEffIdxCentFT0C,
1843+ PROCESS_SWITCH (DndetaMFTPbPb, processTrkEffIdxCentFT0C,
18501844 " Process tracking efficiency (in FT0C centrality bins, indexed)" , false );
18511845
18521846 // / @brief process function to calculate tracking efficiency (indexed) based
@@ -1924,8 +1918,7 @@ struct DndetaMFTPbPb {
19241918 particles, tracks, besttracks);
19251919 }
19261920
1927- PROCESS_SWITCH (
1928- DndetaMFTPbPb, processTrkEffBestInclusive,
1921+ PROCESS_SWITCH (DndetaMFTPbPb, processTrkEffBestInclusive,
19291922 " Process tracking efficiency (inclusive, based on BestCollisionsFwd)" ,
19301923 false );
19311924
@@ -2093,8 +2086,7 @@ struct DndetaMFTPbPb {
20932086 collision, allcollisions, track);
20942087 }
20952088
2096- PROCESS_SWITCH (
2097- DndetaMFTPbPb, processCheckAmbiguousMftTracksCentFT0C,
2089+ PROCESS_SWITCH (DndetaMFTPbPb, processCheckAmbiguousMftTracksCentFT0C,
20982090 " Process checks for Ambiguous MFT tracks (in FT0C centrality bins)" ,
20992091 false );
21002092
0 commit comments