Skip to content

Commit 1eb3798

Browse files
authored
Please consider the following formatting changes (#369)
1 parent 0a533fa commit 1eb3798

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

PWGLF/TableProducer/Strangeness/hStrangeCorrelationFilter.cxx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ struct hstrangecorrelationfilter {
5151
Configurable<float> strangedEdxNSigma{"strangedEdxNSigma", 4, "Nsigmas for strange decay daughters"};
5252
Configurable<float> strangedEdxNSigmaTight{"strangedEdxNSigmaTight", 3, "Nsigmas for strange decay daughters"};
5353

54-
// event filtering
54+
// event filtering
5555
Configurable<std::string> zorroMask{"zorroMask", "", "zorro trigger class to select on (empty: none)"};
5656

5757
// Trigger particle selections in phase space
@@ -192,7 +192,7 @@ struct hstrangecorrelationfilter {
192192

193193
zorro.initCCDB(ccdb.service, bc.runNumber(), bc.timestamp(), zorroMask.value);
194194
zorro.populateHistRegistry(histos, bc.runNumber());
195-
195+
196196
mRunNumber = bc.runNumber();
197197
}
198198

@@ -233,7 +233,7 @@ struct hstrangecorrelationfilter {
233233
if (TMath::Abs(collision.posZ()) > 10.0) {
234234
return;
235235
}
236-
if (zorroMask.value != ""){
236+
if (zorroMask.value != "") {
237237
auto bc = collision.bc_as<aod::BCsWithTimestamps>();
238238
initCCDB(bc);
239239
bool zorroSelected = zorro.isSelected(collision.bc_as<aod::BCsWithTimestamps>().globalBC()); /// Just let Zorro do the accounting
@@ -266,7 +266,7 @@ struct hstrangecorrelationfilter {
266266
if (TMath::Abs(collision.posZ()) > 10.0) {
267267
return;
268268
}
269-
if (zorroMask.value != ""){
269+
if (zorroMask.value != "") {
270270
auto bc = collision.bc_as<aod::BCsWithTimestamps>();
271271
initCCDB(bc);
272272
bool zorroSelected = zorro.isSelected(collision.bc_as<aod::BCsWithTimestamps>().globalBC()); /// Just let Zorro do the accounting
@@ -305,7 +305,7 @@ struct hstrangecorrelationfilter {
305305
if (TMath::Abs(collision.posZ()) > 10.0) {
306306
return;
307307
}
308-
if (zorroMask.value != ""){
308+
if (zorroMask.value != "") {
309309
auto bc = collision.bc_as<aod::BCsWithTimestamps>();
310310
initCCDB(bc);
311311
bool zorroSelected = zorro.isSelected(collision.bc_as<aod::BCsWithTimestamps>().globalBC()); /// Just let Zorro do the accounting
@@ -379,7 +379,7 @@ struct hstrangecorrelationfilter {
379379
if (TMath::Abs(collision.posZ()) > 10.0) {
380380
return;
381381
}
382-
if (zorroMask.value != ""){
382+
if (zorroMask.value != "") {
383383
auto bc = collision.bc_as<aod::BCsWithTimestamps>();
384384
initCCDB(bc);
385385
bool zorroSelected = zorro.isSelected(collision.bc_as<aod::BCsWithTimestamps>().globalBC()); /// Just let Zorro do the accounting
@@ -421,7 +421,7 @@ struct hstrangecorrelationfilter {
421421
if (TMath::Abs(collision.posZ()) > 10.0) {
422422
return;
423423
}
424-
if (zorroMask.value != ""){
424+
if (zorroMask.value != "") {
425425
auto bc = collision.bc_as<aod::BCsWithTimestamps>();
426426
initCCDB(bc);
427427
bool zorroSelected = zorro.isSelected(collision.bc_as<aod::BCsWithTimestamps>().globalBC()); /// Just let Zorro do the accounting
@@ -512,7 +512,7 @@ struct hstrangecorrelationfilter {
512512
if (TMath::Abs(collision.posZ()) > 10.0) {
513513
return;
514514
}
515-
if (zorroMask.value != ""){
515+
if (zorroMask.value != "") {
516516
auto bc = collision.bc_as<aod::BCsWithTimestamps>();
517517
initCCDB(bc);
518518
bool zorroSelected = zorro.isSelected(collision.bc_as<aod::BCsWithTimestamps>().globalBC()); /// Just let Zorro do the accounting

PWGLF/Tasks/Strangeness/hStrangeCorrelation.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ struct correlateStrangeness {
5959

6060
HistogramRegistry histos{"Histos", {}, OutputObjHandlingPolicy::AnalysisObject};
6161

62-
// event filtering
62+
// event filtering
6363
Configurable<string> zorroMask{"zorroMask", "", "zorro trigger class to select on (empty: none)"};
6464

6565
Zorro zorro;
@@ -211,7 +211,7 @@ struct correlateStrangeness {
211211

212212
zorro.initCCDB(ccdb.service, bc.runNumber(), bc.timestamp(), zorroMask.value);
213213
zorro.populateHistRegistry(histos, bc.runNumber());
214-
214+
215215
mRunNumberZorro = bc.runNumber();
216216
}
217217

@@ -839,7 +839,7 @@ struct correlateStrangeness {
839839
if (!collision.isInelGt0() && selectINELgtZERO) {
840840
return false;
841841
}
842-
if (zorroMask.value != ""){
842+
if (zorroMask.value != "") {
843843
auto bc = collision.template bc_as<aod::BCsWithTimestamps>();
844844
initZorro(bc);
845845
bool zorroSelected = zorro.isSelected(collision.template bc_as<aod::BCsWithTimestamps>().globalBC()); /// Just let Zorro do the accounting

0 commit comments

Comments
 (0)