FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PixelDigi.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  * PixelDigi.cxx
10  *
11  * Created on: 10.02.2016
12  * Author: M. Al-Turany
13  */
14 
15 #include "PixelDigi.h"
17 
19  : FairTimeStamp()
20  , fPointIndex(0)
21  , fDetectorID(0)
22  , fFeID(0)
23  , fCharge(0.)
24  , fCol(0)
25  , fRow(0)
26 {}
27 
28 PixelDigi::PixelDigi(Int_t in, Int_t detid, Int_t feid, Int_t col, Int_t row, Double_t ch, Double_t tstamp)
29  : FairTimeStamp(tstamp)
30  , fPointIndex(in)
31  , fDetectorID(detid)
32  , fFeID(feid)
33  , fCharge(ch)
34  , fCol(col)
35  , fRow(row)
36 {}
37 
ClassImp(FairEventBuilder)
virtual ~PixelDigi()
Definition: PixelDigi.cxx:38