FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MyDigi.cxx
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  ********************************************************************************/
8 
9 /*
10  * File: MyDigi.cxx
11  * Author: winckler
12  *
13  * Created on November 24, 2014, 1:31 PM
14  */
15 
16 #include "MyDigi.h"
18 
20  : FairTimeStamp()
21  , fX(0)
22  , fY(0)
23  , fZ(0)
24 {}
25 
26 MyDigi::MyDigi(Int_t x, Int_t y, Int_t z, Double_t timeStamp, Double_t timeStampError)
27  : FairTimeStamp(timeStamp, timeStampError)
28  , fX(x)
29  , fY(y)
30  , fZ(z)
31 {}
32 
virtual ~MyDigi()
Definition: MyDigi.cxx:33
ClassImp(FairEventBuilder)
Double_t fZ
Definition: MyDigi.h:32
Double_t fY
Double_t fX
MyDigi()
Definition: MyDigi.cxx:19