Skip to content

Commit 756fb42

Browse files
authored
ITS Beam background studies - first workflow (AliceO2Group#15268)
* ITS Beam background studies - first workflow * fix clang * fix CI error * Fix statements in braces * leftover... * Fixing shift 1 bc
1 parent 425f555 commit 756fb42

4 files changed

Lines changed: 780 additions & 1 deletion

File tree

Detectors/ITSMFT/ITS/postprocessing/studies/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ SOURCES src/ImpactParameter.cxx
1515
src/PIDStudy.cxx
1616
src/ITSStudiesConfigParam.cxx
1717
src/AnomalyStudy.cxx
18+
src/ITSBeamBackgroundStudy.cxx
1819
src/TrackCheck.cxx
1920
src/TrackExtension.cxx
2021
src/Efficiency.cxx
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2+
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3+
// All rights not expressly granted are reserved.
4+
//
5+
// This software is distributed under the terms of the GNU General Public
6+
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7+
//
8+
// In applying this license CERN does not waive the privileges and immunities
9+
// granted to it by virtue of its status as an Intergovernmental Organization
10+
// or submit itself to any jurisdiction.
11+
12+
#ifndef O2_ITS_BEAMBKG_STUDY_H
13+
#define O2_ITS_BEAMBKG_STUDY_H
14+
15+
#include "Framework/DataProcessorSpec.h"
16+
#include "ReconstructionDataFormats/GlobalTrackID.h"
17+
18+
namespace o2::its::study
19+
{
20+
21+
using mask_t = o2::dataformats::GlobalTrackID::mask_t;
22+
23+
o2::framework::DataProcessorSpec getITSBeamBackgroundStudy(mask_t srcTracksMask, mask_t srcClustersMask, bool useMC);
24+
25+
} // namespace o2::its::study
26+
#endif

0 commit comments

Comments
 (0)