Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 9 additions & 7 deletions PWGUD/Core/DGSelector.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ class DGSelector
// forward tracks
LOGF(debug, "FwdTracks %i", fwdtracks.size());
if (!diffCuts.withFwdTracks()) {
// only consider tracks with MID (good timing)
for (auto& fwdtrack : fwdtracks) {
LOGF(info, " %i / %f / %f / %f / %f", fwdtrack.trackType(), fwdtrack.eta(), fwdtrack.pt(), fwdtrack.p(), fwdtrack.trackTimeRes());
// only consider tracks with MID (good timing)
if (fwdtrack.trackType() == 0 || fwdtrack.trackType() == 3) {
return 2;
}
Expand Down Expand Up @@ -158,12 +158,14 @@ class DGSelector
}

// no activity in muon arm
LOGF(debug, "FwdTracks %i", fwdtracks.size());
for (auto& fwdtrack : fwdtracks) {
LOGF(debug, " %i / %f / %f / %f", fwdtrack.trackType(), fwdtrack.eta(), fwdtrack.pt(), fwdtrack.p());
}
if (fwdtracks.size() > 0) {
return 2;
if (!diffCuts.withFwdTracks()) {
for (auto& fwdtrack : fwdtracks) {
LOGF(info, " %i / %f / %f / %f / %f", fwdtrack.trackType(), fwdtrack.eta(), fwdtrack.pt(), fwdtrack.p(), fwdtrack.trackTimeRes());
// only consider tracks with MID (good timing)
if (fwdtrack.trackType() == 0 || fwdtrack.trackType() == 3) {
return 2;
}
}
}

// number of tracks
Expand Down
43 changes: 43 additions & 0 deletions PWGUD/Core/UDHelpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,25 @@ bool isPythiaCDE(T MCparts)
return false;
}

// -----------------------------------------------------------------------------
// In rho -> mu+ + mu- events generated with STARlight the stack starts with
// 443013, 13, -13 or 443013, -13, 13
template <typename T>
bool isSTARLightRhomumu(T MCparts)
{
if (MCparts.size() < 3) {
return false;
} else {
if (MCparts.iteratorAt(0).pdgCode() != 443013)
return false;
if (abs(MCparts.iteratorAt(1).pdgCode()) != 13)
return false;
if (MCparts.iteratorAt(2).pdgCode() != -MCparts.iteratorAt(1).pdgCode())
return false;
}
return true;
}

// -----------------------------------------------------------------------------
// In pp events produced with GRANIITTI the stack starts with
// 22212/22212/99/22212/2212/99/90
Expand Down Expand Up @@ -630,6 +649,30 @@ bool isGraniittiCDE(T MCparts)
return true;
}

// -----------------------------------------------------------------------------
// function to select MC events of interest
template <typename T>
int isOfInterest(T MCparts)
{

// PYTHIA CDE
if (isPythiaCDE(MCparts)) {
return 1;
}

// GRANIITTI CDE
if (isGraniittiCDE(MCparts)) {
return 2;
}

// STARLIGHT rho -> mu+ + mu-
if (isSTARLightRhomumu(MCparts)) {
return 3;
}

return 0;
}

// -----------------------------------------------------------------------------
// Invariant mass of GRANIITTI generated event
template <typename T>
Expand Down
32 changes: 26 additions & 6 deletions PWGUD/TableProducer/DGBCCandProducer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ struct tracksWGTInBCs {
void processBarrel(BCs const& bcs, CCs const& collisions, TCs const& tracks, ATs const& ambTracks)
{
// run number
if (bcs.size() <= 0) {
return;
}
int rnum = bcs.iteratorAt(0).runNumber();

// container to sort tracks with good timing according to their matching/closest BC
Expand All @@ -73,7 +76,7 @@ struct tracksWGTInBCs {
for (auto const& track : tracks) {
registry.get<TH1>(HIST("barrel/Tracks"))->Fill(0., 1.);

// is this track aPV track?
// is this track a PV track?
if (track.isPVContributor()) {
registry.get<TH1>(HIST("barrel/Tracks"))->Fill(1., 1.);
}
Expand All @@ -96,17 +99,23 @@ struct tracksWGTInBCs {

// compute the BC closest in time
auto firstCompatibleBC = ambTracksSlice.begin().bc().begin().globalBC();
LOGF(debug, "Track time %f", track.trackTime());
LOGF(debug, "First compatible BC %d Track time %f", firstCompatibleBC, track.trackTime());
closestBC = (uint64_t)(firstCompatibleBC +
(track.trackTime() / o2::constants::lhc::LHCBunchSpacingNS));
} else {
// this track is not ambiguous, has hence a unique association to a collision/BC
if (!track.has_collision()) {
continue;
}
auto collision = track.collision_as<CCs>();
if (!collision.has_foundBC()) {
continue;
}
closestBC = collision.foundBC_as<BCs>().globalBC();
}

// update tracksInBCList
LOGF(debug, "Closest BC %d", closestBC);
LOGF(debug, "Updating tracksInBCList with %d", closestBC);
tracksInBCList[closestBC].emplace_back((int32_t)track.globalIndex());
}
}
Expand All @@ -129,8 +138,8 @@ struct tracksWGTInBCs {
break;
}
}
tracksWGTInBCs(indBCToSave, rnum, tracksInBC.first, tracksInBC.second);
LOGF(debug, " BC %i/%u with %i tracks with good timing", indBCToSave, tracksInBC.first, tracksInBC.second.size());
tracksWGTInBCs(indBCToSave, rnum, tracksInBC.first, tracksInBC.second);
}
LOGF(debug, "barrel done");
}
Expand All @@ -142,6 +151,9 @@ struct tracksWGTInBCs {
void processForward(BCs& bcs, CCs& collisions, aod::FwdTracks& fwdTracks, aod::AmbiguousFwdTracks& ambFwdTracks)
{
// run number
if (bcs.size() <= 0) {
return;
}
int rnum = bcs.iteratorAt(0).runNumber();

// container to sort forward tracks according to their matching/closest BC
Expand Down Expand Up @@ -176,11 +188,18 @@ struct tracksWGTInBCs {
(fwdTrack.trackTime() / o2::constants::lhc::LHCBunchSpacingNS));
} else {
// this track is not ambiguous, has hence a unique association to a collision/BC
if (!fwdTrack.has_collision()) {
continue;
}
auto collision = fwdTrack.collision_as<CCs>();
closestBC = collision.bc_as<BCs>().globalBC();
if (!collision.has_foundBC()) {
continue;
}
closestBC = collision.foundBC_as<BCs>().globalBC();
}

// update tracksInBCList
LOGF(debug, "Updating fwdTracksInBCList with %d", closestBC);
fwdTracksInBCList[closestBC].emplace_back((int32_t)fwdTrack.globalIndex());
}
}
Expand All @@ -205,7 +224,7 @@ struct tracksWGTInBCs {
fwdTracksWGTInBCs(indBCToSave, rnum, fwdTracksInBC.first, fwdTracksInBC.second);
LOGF(debug, " BC %i/%u with %i forward tracks with good timing", indBCToSave, fwdTracksInBC.first, fwdTracksInBC.second.size());
}
LOGF(debug, "fwd done");
LOGF(debug, "forward done");
}
PROCESS_SWITCH(tracksWGTInBCs, processForward, "Process forward tracks", false);

Expand Down Expand Up @@ -539,6 +558,7 @@ struct DGBCCandProducer {
bcnum = tibc.bcnum();
}
}

bool withCollision = false;
while (bc2go || tibc2go) {
LOGF(debug, "Testing bc %d/%d/%d", bcnum, bc.globalBC(), tibc.bcnum());
Expand Down
Loading