Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions PWGUD/Tasks/sgExclusivePhiITSselections.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ struct sgExclusivePhiITSselections {
} // end of two tracks only loop

if (allTracksAreKaonsBandPID.size() == 2) {
registry.fill(HIST("hTracksKaons"), allTracksAreKaonsBandPID.size()+10);
registry.fill(HIST("hTracksKaons"), allTracksAreKaonsBandPID.size() + 10);
TLorentzVector reallyPhi;
for (auto kaon : allTracksAreKaonsBandPID) {
reallyPhi += kaon;
Expand All @@ -314,8 +314,8 @@ struct sgExclusivePhiITSselections {

if (allTracksAreKaonsBandPID.size() == 1 && allTracksAreITSonlyAndFourITSclusters.size() > 0) {

registry.fill(HIST("hTracksKaons"), allTracksAreKaonsBandPID.size()+20);
registry.fill(HIST("hTracksKaons"), allTracksAreITSonlyAndFourITSclusters.size()+40);
registry.fill(HIST("hTracksKaons"), allTracksAreKaonsBandPID.size() + 20);
registry.fill(HIST("hTracksKaons"), allTracksAreITSonlyAndFourITSclusters.size() + 40);

double momentum = TMath::Sqrt(onlyKaonBandPID[0].px() * onlyKaonBandPID[0].px() + onlyKaonBandPID[0].py() * onlyKaonBandPID[0].py() + onlyKaonBandPID[0].pz() * onlyKaonBandPID[0].pz());
double dEdx = onlyKaonBandPID[0].tpcSignal();
Expand Down