R3BROOT
R3B analysis software
Loading...
Searching...
No Matches
R3BNeulandTacquilaMappedData.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 R3BNEULANDTACQUILAMAPPEDDATA_H
15#define R3BNEULANDTACQUILAMAPPEDDATA_H
16
17#include "TObject.h"
18#include <iostream>
19
20class R3BNeulandTacquilaMappedData : public TObject
21{
22 public:
24 R3BNeulandTacquilaMappedData(UShort_t clock,
25 UShort_t tacData,
26 UShort_t stopT,
27 UShort_t qdcData,
28 Int_t plane,
29 Int_t paddle,
30 Int_t side);
31
32 UShort_t GetClock() const { return fClock; }
33 UShort_t GetTacData() const { return fTacData; }
34 UShort_t GetStopT() const { return fStopT; }
35 UShort_t GetQdcData() const { return fQdcData; }
36 Int_t GetPlane() const { return fPlane; }
37 Int_t GetPaddle() const { return fPaddle; }
38 Int_t GetSide() const { return fSide; }
39
40 void Print(const Option_t*) const override;
41
42 private:
43 UShort_t fClock;
44 UShort_t fTacData;
45 UShort_t fStopT;
46 UShort_t fQdcData;
47 Int_t fPlane;
48 Int_t fPaddle;
49 Int_t fSide;
50
51 ClassDefOverride(R3BNeulandTacquilaMappedData, 1)
52};
53
54std::ostream& operator<<(std::ostream&, const R3BNeulandTacquilaMappedData&); // Support easy printing
55
56#endif // R3BNEULANDTACQUILAMAPPEDDATA_H
std::ostream & operator<<(std::ostream &, const R3BNeulandTacquilaMappedData &)
void Print(const Option_t *) const override