R3BROOT
R3B analysis software
Loading...
Searching...
No Matches
R3BWhiterabbitPropagator.h
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (C) 2019 GSI Helmholtzzentrum für Schwerionenforschung GmbH *
3 * Copyright (C) 2019-2025 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// --------------------------------------------------------------
15// ----- R3BWhiterabbitPropagator -----
16// ----- Created May 28th 2021 by J.L. Rodriguez-Sanchez -----
17// --------------------------------------------------------------
18
19#ifndef R3BWhiterabbitPropagator_H
20#define R3BWhiterabbitPropagator_H
21
22#include "FairTask.h"
23#include <Rtypes.h>
24
25class TClonesArray;
26
27class R3BWhiterabbitPropagator : public FairTask
28{
29 public:
35
43 R3BWhiterabbitPropagator(const TString& name, Int_t iVerbose = 1, const TString& namewr = "WRMaster");
44
49
56 virtual InitStatus Init() override;
57
63 virtual void Exec(Option_t* option) override;
64
65 private:
66 TString fNameWR;
67 TClonesArray* fInputItem; // Array with input items
68
69 public:
70 ClassDefOverride(R3BWhiterabbitPropagator, 0)
71};
72
73#endif // R3BWhiterabbitPropagator_H
virtual InitStatus Init() override
Method for task initialization.
virtual ~R3BWhiterabbitPropagator()
Destructor.
R3BWhiterabbitPropagator()
Default constructor.
virtual void Exec(Option_t *option) override
Method for event loop implementation.