FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PixelTrack.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  * PixelTrack.h
10  *
11  * Created on: 18.02.2016
12  * Author: R. Karabowicz
13  */
14 
15 #include "PixelTrack.h"
16 
17 #include "FairTimeStamp.h"
18 
20  : FairTimeStamp()
21  , fX0(0.)
22  , fAX(0.)
23  , fY0(0.)
24  , fAY(0.)
25  , fX0Err(0.)
26  , fAXErr(0.)
27  , fY0Err(0.)
28  , fAYErr(0.)
29  , fHitIndices()
30 {}
31 
33  Double_t ax,
34  Double_t y0,
35  Double_t ay,
36  Double_t x0e,
37  Double_t axe,
38  Double_t y0e,
39  Double_t aye)
40  : FairTimeStamp()
41  , fX0(x0)
42  , fAX(ax)
43  , fY0(y0)
44  , fAY(ay)
45  , fX0Err(x0e)
46  , fAXErr(axe)
47  , fY0Err(y0e)
48  , fAYErr(aye)
49  , fHitIndices()
50 {}
51 
53 
virtual ~PixelTrack()
Definition: PixelTrack.cxx:52
ClassImp(FairEventBuilder)