R3BROOT
R3B analysis software
Loading...
Searching...
No Matches
R3BDataPropagator.h
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (C) 2022 GSI Helmholtzzentrum für Schwerionenforschung GmbH *
3 * Copyright (C) 2022-2026 Members of R3B Collaboration *
4 * *
5 * This software is distributed under the terms of the *
6 * GNU General Public Licence (GPL) version 3, *
7 * copied verbatim in the file "LICENSE". *
8 * *
9 * In applying this license GSI does not waive the privileges and immunities *
10 * granted to it by virtue of its status as an Intergovernmental Organization *
11 * or submit itself to any jurisdiction. *
12 ******************************************************************************/
13
14#pragma once
15
16#include <FairTask.h>
17#include <Rtypes.h>
18
19class TClonesArray;
20
21class R3BDataPropagator : public FairTask
22{
23 public:
29
37 explicit R3BDataPropagator(const TString& name, int iVerbose = 1, TString namebranch = "");
38
43 ~R3BDataPropagator() override = default;
44
51 InitStatus Init() override;
52
58 void Exec(Option_t* /*option*/) override; // NOLINT(misc-include-cleaner)
59
60 private:
61 TString fNameBranch;
62 TClonesArray* fInputData = nullptr; // Array with input data
63
64 public:
66};
~R3BDataPropagator() override=default
Destructor.
TClonesArray * fInputData
InitStatus Init() override
Method for task initialization.
ClassDefOverride(R3BDataPropagator, 0)
void Exec(Option_t *) override
Method for event loop implementation.
R3BDataPropagator()
Default constructor.