FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FairMBSRawItem.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 #include "FairMBSRawItem.h"
10 
12  : TObject()
13  , fSam(0)
14  , fGtb(0)
15  , fTacAddr(0)
16  , fTacCh(0)
17  , fCal(0)
18  , fClock(0)
19  , fTacData(0)
20  , fQdcData(0)
21 {}
22 
24  UShort_t gtb,
25  UShort_t tacAddr,
26  UShort_t tacCh,
27  UShort_t cal,
28  UShort_t clock,
29  UShort_t tacData,
30  UShort_t qdcData)
31  : TObject()
32  , fSam(sam)
33  , fGtb(gtb)
34  , fTacAddr(tacAddr)
35  , fTacCh(tacCh)
36  , fCal(cal)
37  , fClock(clock)
38  , fTacData(tacData)
39  , fQdcData(qdcData)
40 {}
41 
43  : TObject(right)
44  , fSam(right.fSam)
45  , fGtb(right.fGtb)
46  , fTacAddr(right.fTacAddr)
47  , fTacCh(right.fTacCh)
48  , fCal(right.fCal)
49  , fClock(right.fClock)
50  , fTacData(right.fTacData)
51  , fQdcData(right.fQdcData)
52 {}
53 
ClassImp(FairEventBuilder)