Skip to content

Commit

Permalink
PWG-LF: casc. analysis QA use TPCFull tables (#3069)
Browse files Browse the repository at this point in the history
* use TPCFull tables to reduce the CPU/Memory footprint

---------

Co-authored-by: Chiara De Martin <[email protected]>
Co-authored-by: Nicolò Jacazio <[email protected]>
  • Loading branch information
3 people authored Jul 17, 2023
1 parent 8c54237 commit 6ce3164
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion PWGLF/TableProducer/cascqaanalysis.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
///
/// \brief QA task for Cascade analysis using derived data
///
/// \author Chiara De Martin ([email protected])
/// \author Francesca Ercolessi ([email protected])
/// \modified by Roman Nepeivoda ([email protected])
/// \since June 1, 2023
Expand All @@ -32,7 +33,8 @@ using namespace o2::framework;
using namespace o2::framework::expressions;

// using DauTracks = soa::Join<aod::TracksIU, aod::TracksExtra, aod::TracksCovIU, aod::TracksDCA, aod::pidTPCPi, aod::pidTPCPr, aod::pidTPCKa, aod::pidTOFPi, aod::pidTOFPr>;
using DauTracks = soa::Join<aod::TracksIU, aod::TrackSelection, aod::TracksExtra, aod::TracksDCA, aod::pidTPCPi, aod::pidTPCPr, aod::pidTPCKa, aod::pidTOFPi, aod::pidTOFPr, aod::pidTOFKa>;
using TrkPidInfo = soa::Join<aod::pidTPCFullPi, aod::pidTPCFullPr, aod::pidTPCFullKa, aod::pidTOFPi, aod::pidTOFPr, aod::pidTOFKa>;
using DauTracks = soa::Join<aod::TracksIU, aod::TrackSelection, aod::TracksExtra, aod::TracksDCA, TrkPidInfo>;
using LabeledCascades = soa::Join<aod::CascDataExt, aod::McCascLabels>;

struct cascqaanalysis {
Expand Down

0 comments on commit 6ce3164

Please sign in to comment.