GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TXXXParameter.cxx
Go to the documentation of this file.
1 // $Id: TXXXParameter.cxx 1318 2015-01-08 13:28:41Z linev $
2 //-----------------------------------------------------------------------
3 // The GSI Online Offline Object Oriented (Go4) Project
4 // Experiment Data Processing at EE department, GSI
5 //-----------------------------------------------------------------------
6 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH
7 // Planckstr. 1, 64291 Darmstadt, Germany
8 // Contact: http://go4.gsi.de
9 //-----------------------------------------------------------------------
10 // This software can be used under the license agreements as stated
11 // in Go4License.txt file which is part of the distribution.
12 //-----------------------------------------------------------------------
13 
14 #include "TXXXParameter.h"
15 
16 TXXXParameter::TXXXParameter(const char* name) :
17  TGo4Parameter(name),
18  fArr()
19 {
20  frP1 = 10;
21  frP2 = 20;
22  fbHisto = kTRUE;
23 
24  for (Int_t n1=0;n1<3;n1++)
25  for (Int_t n2=0;n2<4;n2++)
26  fArr2[n1][n2] = n1+n2;
27 
28  for (Int_t n1=0;n1<3;n1++)
29  for (Int_t n2=0;n2<4;n2++)
30  for (Int_t n3=0;n3<5;n3++)
31  fArr3[n1][n2][n3] = n1+n2+n3;
32 }
Int_t fArr2[3][4]
Definition: TXXXParameter.h:32
TXXXParameter(const char *name=0)
Int_t fArr3[3][4][5]
Definition: TXXXParameter.h:34