|
9 | 9 | // granted to it by virtue of its status as an Intergovernmental Organization |
10 | 10 | // or submit itself to any jurisdiction. |
11 | 11 |
|
| 12 | +#include "PWGCF/Core/AnalysisConfigurableCuts.h" |
| 13 | +#include "PWGCF/Core/PairCuts.h" |
| 14 | +#include "PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.h" |
| 15 | +#include "PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsSkimmed.h" |
| 16 | + |
| 17 | +#include "Framework/AnalysisTask.h" |
| 18 | +#include "Framework/runDataProcessing.h" |
12 | 19 | #include <DataFormatsParameters/GRPObject.h> |
13 | | -#include <cmath> |
14 | | -#include <TROOT.h> |
| 20 | + |
15 | 21 | #include <TDatabasePDG.h> |
16 | | -#include <TParameter.h> |
17 | | -#include <TList.h> |
18 | 22 | #include <TDirectory.h> |
19 | 23 | #include <TFolder.h> |
20 | 24 | #include <TH1.h> |
21 | 25 | #include <TH2.h> |
22 | 26 | #include <TH3.h> |
| 27 | +#include <TList.h> |
| 28 | +#include <TParameter.h> |
23 | 29 | #include <TProfile3D.h> |
| 30 | +#include <TROOT.h> |
24 | 31 |
|
25 | | -#include "Framework/AnalysisTask.h" |
26 | | -#include "Framework/runDataProcessing.h" |
27 | | -#include "PWGCF/Core/AnalysisConfigurableCuts.h" |
28 | | -#include "PWGCF/TwoParticleCorrelations/Core/FilterAndAnalysisFramework.h" |
29 | | -#include "PWGCF/TwoParticleCorrelations/DataModel/TwoParticleCorrelationsSkimmed.h" |
30 | | -#include "PWGCF/Core/PairCuts.h" |
| 32 | +#include <cmath> |
| 33 | +#include <cstdio> |
| 34 | +#include <string> |
| 35 | +#include <vector> |
31 | 36 |
|
32 | 37 | using namespace o2; |
33 | 38 | using namespace o2::framework; |
@@ -576,7 +581,7 @@ struct twoParticleCorrelations { |
576 | 581 | }; // DataCollectingEngine |
577 | 582 |
|
578 | 583 | /* the skimming configuration */ |
579 | | -#include "PWGCF/TwoParticleCorrelations/TableProducer/Productions/skimmingconf_20221115.cxx" // NOLINT |
| 584 | +#include "PWGCF/TwoParticleCorrelations/TableProducer/Productions/skimmingconf_20221115.h" // NOLINT |
580 | 585 |
|
581 | 586 | Service<o2::ccdb::BasicCCDBManager> ccdb; |
582 | 587 |
|
@@ -754,7 +759,7 @@ struct twoParticleCorrelations { |
754 | 759 | LOGF(info, "twoParticleCorrelationsFilter::init(), collision selection masks 0x%016lx, %s, and 0x%016lx and multiplicity index %d", collisionmask, fFilterFramework->printCollisionOptionalMasks().Data(), collisionmask_forced, fMultiplicityIndex); |
755 | 760 | LOGF(info, "twoParticleCorrelationsFilter::init(), track selection masks 0x%016lx, %s, and 0x%016lx ", trackmask, fFilterFramework->printTrackOptionalMasks().Data(), trackmask_forced); |
756 | 761 | LOGF(info, "twoParticleCorrelationsFilter::init(), PID selection masks 0x%016lx, %s, and 0x%016lx ", pidmask, fFilterFramework->printPIDOptionalMasks().Data(), pidmask_forced); |
757 | | - if (collisionmask == uint64_t(0) || trackmask == uint64_t(0)) { |
| 762 | + if (collisionmask == static_cast<uint64_t>(0) || trackmask == static_cast<uint64_t>(0)) { |
758 | 763 | LOGF(fatal, "twoParticleCorrelationsFilter::init() null masks, selecting everything!!!"); |
759 | 764 | } |
760 | 765 |
|
|
0 commit comments