Project
Loading...
Searching...
No Matches
FileWriterSpec.h
Go to the documentation of this file.
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
15
16#ifndef TPC_FileWriterSpec_H_
17#define TPC_FileWriterSpec_H_
18
20#include <string>
21
22namespace o2::tpc
23{
24
25enum class BranchType {
26 Krypton,
27 Digits,
28};
29
30const std::unordered_map<std::string, BranchType> BranchTypeMap{
31 {"krypton", BranchType::Krypton},
32 {"digits", BranchType::Digits},
33};
34
35const std::unordered_map<BranchType, std::string> BranchName{
36 {BranchType::Krypton, "TPCBoxCluster"},
37 {BranchType::Digits, "TPCDigit"},
38};
39
40const std::unordered_map<BranchType, std::string> TreeName{
41 {BranchType::Krypton, "Clusters"},
42 {BranchType::Digits, "o2sim"},
43};
44
47template <typename T>
48o2::framework::DataProcessorSpec getFileWriterSpec(const std::string inputSpec, const BranchType branchType = BranchType::Krypton, unsigned long sectorMask = 0xFFFFFFFFF);
49
50} // namespace o2::tpc
51
52#endif // TPC_RAWTODIGITSSPEC_H_
Global TPC definitions and constants.
Definition SimTraits.h:167
const std::unordered_map< std::string, BranchType > BranchTypeMap
const std::unordered_map< BranchType, std::string > TreeName
const std::unordered_map< BranchType, std::string > BranchName
o2::framework::DataProcessorSpec getFileWriterSpec(const std::string inputSpec, const BranchType branchType=BranchType::Krypton, unsigned long sectorMask=0xFFFFFFFFF)