FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FairTestDetectorPayload.h
Go to the documentation of this file.
1 /********************************************************************************
2  * Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
3  * *
4  * This software is distributed under the terms of the *
5  * GNU Lesser General Public Licence (LGPL) version 3, *
6  * copied verbatim in the file "LICENSE" *
7  ********************************************************************************/
15 #ifndef TESTDETECTORPAYLOAD_H_
16 #define TESTDETECTORPAYLOAD_H_
17 
18 namespace TestDetectorPayload {
19 class TimeStamp
20 {
21  public:
22  Double_t fTimeStamp;
23  Double_t fTimeStampError;
24 };
25 
26 class Digi : public TimeStamp
27 {
28  public:
29  Int_t fX;
30  Int_t fY;
31  Int_t fZ;
32 };
33 
34 class Hit : public TimeStamp
35 {
36  public:
37  Int_t detID;
38  Int_t mcindex;
39  Double_t posX;
40  Double_t posY;
41  Double_t posZ;
42  Double_t dposX;
43  Double_t dposY;
44  Double_t dposZ;
45 };
46 } // namespace TestDetectorPayload
47 
48 #endif /* TESTDETECTORPAYLOAD_H_ */