|
16 | 16 |
|
17 | 17 | /// \author Andrea Giovanni Riffero <andrea.giovanni.riffero@cern.ch> |
18 | 18 |
|
19 | | -#include <vector> |
20 | | -#include <unordered_map> |
| 19 | +#include "PWGUD/DataModel/UDTables.h" |
21 | 20 |
|
22 | | -#include "Framework/runDataProcessing.h" |
23 | | -#include "Framework/O2DatabasePDGPlugin.h" |
24 | | -#include "Framework/AnalysisTask.h" |
25 | 21 | #include "Framework/AnalysisDataModel.h" |
26 | | -#include "PWGUD/DataModel/UDTables.h" |
| 22 | +#include "Framework/AnalysisTask.h" |
| 23 | +#include "Framework/O2DatabasePDGPlugin.h" |
| 24 | +#include "Framework/runDataProcessing.h" |
27 | 25 |
|
28 | 26 | #include "TLorentzVector.h" |
29 | 27 | #include "TRandom3.h" |
30 | 28 |
|
| 29 | +#include <unordered_map> |
| 30 | +#include <vector> |
| 31 | + |
31 | 32 | // table for saving tree with info on data |
32 | 33 | namespace dimu |
33 | 34 | { |
@@ -410,14 +411,14 @@ struct FwdMuonsUPC { |
410 | 411 | } |
411 | 412 | } |
412 | 413 |
|
413 | | - //select events with exactly 2 forward tracks |
| 414 | + // select events with exactly 2 forward tracks |
414 | 415 | if (cand.numContrib() != 2) { |
415 | 416 | return; |
416 | 417 | } |
417 | 418 |
|
418 | 419 | // select opposite charge events only |
419 | 420 | if (cand.netCharge() != 0) { |
420 | | - //registry.fill(HIST("hSameSign"), cand.numContrib()); |
| 421 | + // registry.fill(HIST("hSameSign"), cand.numContrib()); |
421 | 422 | return; |
422 | 423 | } |
423 | 424 |
|
@@ -539,7 +540,7 @@ struct FwdMuonsUPC { |
539 | 540 | { |
540 | 541 |
|
541 | 542 | // check that all pairs are mu+mu- |
542 | | - if (std::abs(McPart1.pdgCode()) != kMuonPDG || std::abs(McPart2.pdgCode()) != kMuonPDG){ |
| 543 | + if (std::abs(McPart1.pdgCode()) != kMuonPDG || std::abs(McPart2.pdgCode()) != kMuonPDG) { |
543 | 544 | LOGF(debug, "PDG codes: %d | %d", McPart1.pdgCode(), McPart2.pdgCode()); |
544 | 545 | return; |
545 | 546 | } |
@@ -619,7 +620,7 @@ struct FwdMuonsUPC { |
619 | 620 |
|
620 | 621 | // select opposite charge events only |
621 | 622 | if (cand.netCharge() != 0) { |
622 | | - //registry.fill(HIST("hSameSign"), cand.numContrib()); |
| 623 | + // registry.fill(HIST("hSameSign"), cand.numContrib()); |
623 | 624 | return; |
624 | 625 | } |
625 | 626 |
|
|
0 commit comments