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