R3BROOT
R3B analysis software
Loading...
Searching...
No Matches
R3BNeulandTacquilaMapped2QCalPar.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#ifndef R3BNEULANDTACQUILAMAPPED2QCALPAR_H
15#define R3BNEULANDTACQUILAMAPPED2QCALPAR_H
16
17#include "FairTask.h"
18
19class TClonesArray;
20class TH1F;
21class R3BEventHeader;
23
24class R3BNeulandTacquilaMapped2QCalPar : public FairTask
25{
26
27 public:
29 R3BNeulandTacquilaMapped2QCalPar(const char* name, Int_t iVerbose = 1);
31
32 virtual InitStatus Init();
33
34 virtual void Exec(Option_t* option);
35
36 virtual void FinishTask();
37
38 void SetPlanes(Int_t planes) { fPlanes = planes; }
39
40 private:
41 Int_t fPlanes = 60;
42 Int_t fPaddles = 50;
43
44 TClonesArray* fHits;
46
47 Int_t fEventNumber = 0;
48
49 R3BEventHeader* header;
50
51 std::vector<std::vector<std::vector<TH1F*>>> fData;
52
53 public:
55};
56
57#endif