forked from AliceO2Group/AliceO2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow for ITS PID study (AliceO2Group#12478)
* Add workflow for ITS PID study * Update author * Update author in the header * Add MC matching + fix output name * Add custom BB resolution * Update PIDStudy.cxx Co-authored-by: Matteo Concas <[email protected]> --------- Co-authored-by: Matteo Concas <[email protected]>
- Loading branch information
Showing
7 changed files
with
408 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
Detectors/ITSMFT/ITS/postprocessing/studies/include/ITSStudies/PIDStudy.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Copyright 2019-2020 CERN and copyright holders of ALICE O2. | ||
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders. | ||
// All rights not expressly granted are reserved. | ||
// | ||
// This software is distributed under the terms of the GNU General Public | ||
// License v3 (GPL Version 3), copied verbatim in the file "COPYING". | ||
// | ||
// In applying this license CERN does not waive the privileges and immunities | ||
// granted to it by virtue of its status as an Intergovernmental Organization | ||
// or submit itself to any jurisdiction. | ||
|
||
/// \file PIDStudy.h | ||
/// \author Francesco Mazzaschi, [email protected] | ||
|
||
#ifndef O2_PID_STUDY_H | ||
#define O2_PID_STUDY_H | ||
|
||
#include "Framework/DataProcessorSpec.h" | ||
#include "ReconstructionDataFormats/GlobalTrackID.h" | ||
#include <Steer/MCKinematicsReader.h> | ||
|
||
namespace o2 | ||
{ | ||
namespace its | ||
{ | ||
namespace study | ||
{ | ||
|
||
using mask_t = o2::dataformats::GlobalTrackID::mask_t; | ||
|
||
o2::framework::DataProcessorSpec getPIDStudy(mask_t srcTracksMask, mask_t srcClustersMask, bool useMC, std::shared_ptr<o2::steer::MCKinematicsReader> kineReader); | ||
} // namespace study | ||
} // namespace its | ||
} // namespace o2 | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.