Line data Source code
1 : /**************************************************************************
2 : * Copyright(c) 2008-2010, ALICE Experiment at CERN, All rights reserved. *
3 : * *
4 : * Author: The ALICE Off-line Project. *
5 : * Contributors are mentioned in the code where appropriate. *
6 : * *
7 : * Permission to use, copy, modify and distribute this software and its *
8 : * documentation strictly for non-commercial purposes is hereby granted *
9 : * without fee, provided that the above copyright notice appears in all *
10 : * copies and that both the copyright notice and this permission notice *
11 : * appear in the supporting documentation. The authors make no claims *
12 : * about the suitability of this software for any purpose. It is *
13 : * provided "as is" without express or implied warranty. *
14 : **************************************************************************/
15 :
16 : /* $Id$ */
17 :
18 : /////////////////////////////////////////////////////////////////
19 : // Author: A. Mastroserio //
20 : // This class is used as a container for the FO scan //
21 : // //
22 : /////////////////////////////////////////////////////////////////
23 :
24 :
25 : #include <TObjArray.h>
26 : #include "AliITSOnlineSPDfoChipConfig.h"
27 :
28 116 : ClassImp(AliITSOnlineSPDfoChipConfig)
29 :
30 : AliITSOnlineSPDfoChipConfig::AliITSOnlineSPDfoChipConfig():
31 0 : TObject(),
32 0 : fChipConfigRow(0),
33 0 : fChipConfigCol(0),
34 0 : fCounter(0),
35 0 : fMatrixId(-1)
36 0 : {
37 : //constructor
38 0 : }
39 : //__________________________
40 :
41 : AliITSOnlineSPDfoChipConfig::AliITSOnlineSPDfoChipConfig(Short_t measure[4]):
42 0 : TObject(),
43 0 : fChipConfigRow(measure[1]),
44 0 : fChipConfigCol(measure[2]),
45 0 : fCounter(measure[3]),
46 0 : fMatrixId(measure[0])
47 0 : {
48 : //constructor
49 0 : }
50 : //
51 : AliITSOnlineSPDfoChipConfig::AliITSOnlineSPDfoChipConfig(const AliITSOnlineSPDfoChipConfig &p):
52 0 : TObject(p),
53 0 : fChipConfigRow(p.fChipConfigRow),
54 0 : fChipConfigCol(p.fChipConfigCol),
55 0 : fCounter(p.fCounter),
56 0 : fMatrixId(p.fMatrixId)
57 0 : {
58 : //
59 : //copy constructor
60 : //
61 0 : }
|