Project
Loading...
Searching...
No Matches
FV0DigitWriterSpec.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
12#ifndef STEER_DIGITIZERWORKFLOW_FV0DIGITWRITER_H_
13#define STEER_DIGITIZERWORKFLOW_FV0DIGITWRITER_H_
14
17#include "Framework/InputSpec.h"
23
24namespace o2
25{
26namespace fv0
27{
28
29template <typename T>
30using BranchDefinition = framework::MakeRootTreeWriterSpec::BranchDefinition<T>;
31
33{
36 return MakeRootTreeWriterSpec("FV0DigitWriter",
37 "fv0digits.root",
38 "o2sim",
39 1,
40 BranchDefinition<std::vector<o2::fv0::Digit>>{InputSpec{"fv0digitBCinput", "FV0", "DIGITSBC"}, "FV0DigitBC"},
41 BranchDefinition<std::vector<o2::fv0::ChannelData>>{InputSpec{"fv0digitChinput", "FV0", "DIGITSCH"}, "FV0DigitCh"},
42 BranchDefinition<std::vector<o2::fv0::DetTrigInput>>{InputSpec{"fv0digitTrinput", "FV0", "TRIGGERINPUT"}, "TRIGGERINPUT"},
43 BranchDefinition<o2::dataformats::MCTruthContainer<o2::fv0::MCLabel>>{InputSpec{"fv0labelinput", "FV0", "DIGITLBL"}, "FV0DigitLabels", mctruth ? 1 : 0})();
44}
45
46} // namespace fv0
47} // end namespace o2
48
49#endif /* STEER_DIGITIZERWORKFLOW_FV0DIGITWRITER_H_ */
Class to describe fired triggered and/or stored channels for the BC and to refer to channel data.
Container class to store time and charge values of single FV0 channel.
Definition of a container to keep Monte Carlo truth external to simulation objects.
Configurable generator for RootTreeWriter processor spec.
Generate a processor spec for the RootTreeWriter utility.
framework::DataProcessorSpec getFV0DigitWriterSpec(bool mctruth=true, bool trigInp=true)
create a processor spec
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...