CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
TEcnaObject Class Reference

#include <TEcnaObject.h>

Inheritance diagram for TEcnaObject:

Public Member Functions

Long_t GetPointerValue (const TString)
 
void Init ()
 
void NumberCreateObjectMessage (const TString, const Long_t &, const Int_t &)
 
void NumberReuseObjectMessage (const TString, const Long_t &, const Int_t &)
 
Bool_t RegisterPointer (const TString, const Long_t &)
 
 TEcnaObject ()
 
virtual ~TEcnaObject ()
 

Private Attributes

Int_t fCounterCreateTEcnaGui
 
Int_t fCounterCreateTEcnaHeader
 
Int_t fCounterCreateTEcnaHistos
 
Int_t fCounterCreateTEcnaNArrayD
 
Int_t fCounterCreateTEcnaNumbering
 
Int_t fCounterCreateTEcnaParCout
 
Int_t fCounterCreateTEcnaParEcal
 
Int_t fCounterCreateTEcnaParHistos
 
Int_t fCounterCreateTEcnaParPaths
 
Int_t fCounterCreateTEcnaRead
 
Int_t fCounterCreateTEcnaResultType
 
Int_t fCounterCreateTEcnaRootFile
 
Int_t fCounterCreateTEcnaRun
 
Int_t fCounterCreateTEcnaWrite
 
Int_t fCounterReusingTEcnaGui
 
Int_t fCounterReusingTEcnaHeader
 
Int_t fCounterReusingTEcnaHistos
 
Int_t fCounterReusingTEcnaNArrayD
 
Int_t fCounterReusingTEcnaNumbering
 
Int_t fCounterReusingTEcnaParCout
 
Int_t fCounterReusingTEcnaParEcal
 
Int_t fCounterReusingTEcnaParHistos
 
Int_t fCounterReusingTEcnaParPaths
 
Int_t fCounterReusingTEcnaRead
 
Int_t fCounterReusingTEcnaResultType
 
Int_t fCounterReusingTEcnaRootFile
 
Int_t fCounterReusingTEcnaRun
 
Int_t fCounterReusingTEcnaWrite
 
Int_t fgMaxCar
 
Long_t fObjectTEcnaGui
 
Long_t fObjectTEcnaHeader
 
Long_t fObjectTEcnaHistos
 
Long_t fObjectTEcnaNArrayD
 
Long_t fObjectTEcnaNumbering
 
Long_t fObjectTEcnaParCout
 
Long_t fObjectTEcnaParEcal
 
Long_t fObjectTEcnaParHistos
 
Long_t fObjectTEcnaParPaths
 
Long_t fObjectTEcnaRead
 
Long_t fObjectTEcnaResultType
 
Long_t fObjectTEcnaRootFile
 
Long_t fObjectTEcnaRun
 
Long_t fObjectTEcnaWrite
 
TString fTTBELL
 

Detailed Description


TEcnaObject.h Update: 15/02/2011 Author: B.Fabbro (berna.nosp@m.rd.f.nosp@m.abbro.nosp@m.@cea.nosp@m..fr) DSM/IRFU/SPP CEA-Saclay Copyright: Those valid for CEA sofware

ECNA web page: http://cms-fabbro.web.cern.ch/cms-fabbro/

cna_new/Correlated_Noise_Analysis/ECNA_cna_1.htm

ECNA object management

Definition at line 25 of file TEcnaObject.h.

Constructor & Destructor Documentation

TEcnaObject::TEcnaObject ( )

Definition at line 28 of file TEcnaObject.cc.

References Init(), and NumberCreateObjectMessage().

29 {
30 // Constructor without argument
31 
32  // cout << "[Info Management] CLASS: TEcnaObject. CREATE OBJECT: this = " << this << endl;
33 
34  Long_t PointerValue = (Long_t)this;
35  Int_t un = 1;
36  NumberCreateObjectMessage("TEcnaObject", PointerValue, un);
37 
38  Init();
39 
40 }
void Init()
Definition: TEcnaObject.cc:42
void NumberCreateObjectMessage(const TString, const Long_t &, const Int_t &)
Definition: TEcnaObject.cc:334
TEcnaObject::~TEcnaObject ( )
virtual

Definition at line 16 of file TEcnaObject.cc.

17 {
18 //destructor
19 
20  // cout << "[Info Management] CLASS: TEcnaObject. DESTROY OBJECT: this = " << this << endl;
21 }

Member Function Documentation

Long_t TEcnaObject::GetPointerValue ( const TString  ClassName)

Definition at line 229 of file TEcnaObject.cc.

References fCounterReusingTEcnaGui, fCounterReusingTEcnaHeader, fCounterReusingTEcnaHistos, fCounterReusingTEcnaNArrayD, fCounterReusingTEcnaNumbering, fCounterReusingTEcnaParCout, fCounterReusingTEcnaParEcal, fCounterReusingTEcnaParHistos, fCounterReusingTEcnaParPaths, fCounterReusingTEcnaRead, fCounterReusingTEcnaResultType, fCounterReusingTEcnaRootFile, fCounterReusingTEcnaRun, fCounterReusingTEcnaWrite, fObjectTEcnaGui, fObjectTEcnaHeader, fObjectTEcnaHistos, fObjectTEcnaNArrayD, fObjectTEcnaNumbering, fObjectTEcnaParCout, fObjectTEcnaParEcal, fObjectTEcnaParHistos, fObjectTEcnaParPaths, fObjectTEcnaRead, fObjectTEcnaResultType, fObjectTEcnaRootFile, fObjectTEcnaRun, fObjectTEcnaWrite, and NumberReuseObjectMessage().

Referenced by TEcnaRead::OpenRootFile(), TEcnaRun::OpenRootFile(), TEcnaGui::TEcnaGui(), TEcnaHistos::TEcnaHistos(), TEcnaNumbering::TEcnaNumbering(), TEcnaParHistos::TEcnaParHistos(), TEcnaRead::TEcnaRead(), TEcnaRun::TEcnaRun(), and TEcnaWrite::TEcnaWrite().

230 {
231  Long_t PointerValue = 0;
232 
233  if( ClassName == "TEcnaGui" )
234  {
235  PointerValue = fObjectTEcnaGui;
238  }
239 
240  if( ClassName == "TEcnaHeader" )
241  {
242  PointerValue = fObjectTEcnaHeader;
245  }
246 
247  if( ClassName == "TEcnaHistos" )
248  {
249  PointerValue = fObjectTEcnaHistos;
252  }
253 
254  if( ClassName == "TEcnaNArrayD" )
255  {
256  PointerValue = fObjectTEcnaNArrayD;
259  }
260 
261  if( ClassName == "TEcnaNumbering" )
262  {
263  PointerValue = fObjectTEcnaNumbering;
266  }
267 
268  if( ClassName == "TEcnaParCout" )
269  {
270  PointerValue = fObjectTEcnaParCout;
273  }
274 
275  if( ClassName == "TEcnaParEcal" )
276  {
277  PointerValue = fObjectTEcnaParEcal;
280  }
281 
282  if( ClassName == "TEcnaParHistos" )
283  {
284  PointerValue = fObjectTEcnaParHistos;
287  }
288 
289  if( ClassName == "TEcnaParPaths" )
290  {
291  PointerValue = fObjectTEcnaParPaths;
294  }
295 
296  if( ClassName == "TEcnaRead" )
297  {
298  PointerValue = fObjectTEcnaRead;
301  }
302 
303  if( ClassName == "TEcnaResultType" )
304  {
305  PointerValue = fObjectTEcnaResultType;
308  }
309 
310  if( ClassName == "TEcnaRootFile" )
311  {
312  PointerValue = fObjectTEcnaRootFile;
315  }
316 
317  if( ClassName == "TEcnaRun" )
318  {
319  PointerValue = fObjectTEcnaRun;
322  }
323 
324  if( ClassName == "TEcnaWrite" )
325  {
326  PointerValue = fObjectTEcnaWrite;
329  }
330 
331  return PointerValue;
332 }
Long_t fObjectTEcnaResultType
Definition: TEcnaObject.h:46
Int_t fCounterReusingTEcnaWrite
Definition: TEcnaObject.h:81
Int_t fCounterReusingTEcnaParHistos
Definition: TEcnaObject.h:75
Long_t fObjectTEcnaRead
Definition: TEcnaObject.h:45
Int_t fCounterReusingTEcnaNArrayD
Definition: TEcnaObject.h:71
Long_t fObjectTEcnaGui
Definition: TEcnaObject.h:36
Long_t fObjectTEcnaParEcal
Definition: TEcnaObject.h:42
Int_t fCounterReusingTEcnaParEcal
Definition: TEcnaObject.h:74
Int_t fCounterReusingTEcnaNumbering
Definition: TEcnaObject.h:72
Int_t fCounterReusingTEcnaHeader
Definition: TEcnaObject.h:69
void NumberReuseObjectMessage(const TString, const Long_t &, const Int_t &)
Definition: TEcnaObject.cc:347
Long_t fObjectTEcnaRun
Definition: TEcnaObject.h:48
Int_t fCounterReusingTEcnaResultType
Definition: TEcnaObject.h:78
Int_t fCounterReusingTEcnaRootFile
Definition: TEcnaObject.h:79
Int_t fCounterReusingTEcnaGui
Definition: TEcnaObject.h:68
Long_t fObjectTEcnaWrite
Definition: TEcnaObject.h:49
Long_t fObjectTEcnaParCout
Definition: TEcnaObject.h:41
Int_t fCounterReusingTEcnaRun
Definition: TEcnaObject.h:80
Int_t fCounterReusingTEcnaHistos
Definition: TEcnaObject.h:70
Long_t fObjectTEcnaNArrayD
Definition: TEcnaObject.h:39
Long_t fObjectTEcnaHistos
Definition: TEcnaObject.h:38
Int_t fCounterReusingTEcnaParPaths
Definition: TEcnaObject.h:76
Long_t fObjectTEcnaParHistos
Definition: TEcnaObject.h:43
Int_t fCounterReusingTEcnaRead
Definition: TEcnaObject.h:77
Long_t fObjectTEcnaRootFile
Definition: TEcnaObject.h:47
Long_t fObjectTEcnaHeader
Definition: TEcnaObject.h:37
Long_t fObjectTEcnaNumbering
Definition: TEcnaObject.h:40
Int_t fCounterReusingTEcnaParCout
Definition: TEcnaObject.h:73
Long_t fObjectTEcnaParPaths
Definition: TEcnaObject.h:44
void TEcnaObject::Init ( void  )

Definition at line 42 of file TEcnaObject.cc.

References fCounterCreateTEcnaGui, fCounterCreateTEcnaHeader, fCounterCreateTEcnaHistos, fCounterCreateTEcnaNArrayD, fCounterCreateTEcnaNumbering, fCounterCreateTEcnaParCout, fCounterCreateTEcnaParEcal, fCounterCreateTEcnaParHistos, fCounterCreateTEcnaRead, fCounterCreateTEcnaResultType, fCounterCreateTEcnaRootFile, fCounterCreateTEcnaRun, fCounterCreateTEcnaWrite, fCounterReusingTEcnaGui, fCounterReusingTEcnaHeader, fCounterReusingTEcnaHistos, fCounterReusingTEcnaNArrayD, fCounterReusingTEcnaNumbering, fCounterReusingTEcnaParCout, fCounterReusingTEcnaParEcal, fCounterReusingTEcnaParHistos, fCounterReusingTEcnaRead, fCounterReusingTEcnaResultType, fCounterReusingTEcnaRootFile, fCounterReusingTEcnaRun, fCounterReusingTEcnaWrite, fgMaxCar, fObjectTEcnaGui, fObjectTEcnaHeader, fObjectTEcnaHistos, fObjectTEcnaNArrayD, fObjectTEcnaNumbering, fObjectTEcnaParCout, fObjectTEcnaParEcal, fObjectTEcnaParHistos, fObjectTEcnaRead, fObjectTEcnaResultType, fObjectTEcnaRootFile, fObjectTEcnaRun, fObjectTEcnaWrite, and fTTBELL.

Referenced by TEcnaObject().

43 {
44  fgMaxCar = 512;
45  fTTBELL = '\007';
46 
47  //................ Init pointers to TEcna Objects
48  fObjectTEcnaGui = 0;
56  fObjectTEcnaRead = 0;
59  fObjectTEcnaRun = 0;
61 
62  //................ Init counters of TEcna Object creation
76 
77  //................ Init counters of TEcna Object re-using
91 
92 }// end of Init()
Long_t fObjectTEcnaResultType
Definition: TEcnaObject.h:46
Int_t fCounterReusingTEcnaWrite
Definition: TEcnaObject.h:81
Int_t fCounterReusingTEcnaParHistos
Definition: TEcnaObject.h:75
Long_t fObjectTEcnaRead
Definition: TEcnaObject.h:45
Int_t fCounterReusingTEcnaNArrayD
Definition: TEcnaObject.h:71
Int_t fCounterCreateTEcnaWrite
Definition: TEcnaObject.h:65
Long_t fObjectTEcnaGui
Definition: TEcnaObject.h:36
Long_t fObjectTEcnaParEcal
Definition: TEcnaObject.h:42
Int_t fCounterCreateTEcnaRead
Definition: TEcnaObject.h:61
Int_t fCounterCreateTEcnaHeader
Definition: TEcnaObject.h:53
Int_t fCounterCreateTEcnaResultType
Definition: TEcnaObject.h:62
Int_t fCounterCreateTEcnaRun
Definition: TEcnaObject.h:64
Int_t fCounterReusingTEcnaParEcal
Definition: TEcnaObject.h:74
Int_t fCounterReusingTEcnaNumbering
Definition: TEcnaObject.h:72
Int_t fCounterReusingTEcnaHeader
Definition: TEcnaObject.h:69
Int_t fCounterCreateTEcnaNArrayD
Definition: TEcnaObject.h:55
Int_t fCounterCreateTEcnaGui
Definition: TEcnaObject.h:52
Long_t fObjectTEcnaRun
Definition: TEcnaObject.h:48
Int_t fCounterReusingTEcnaResultType
Definition: TEcnaObject.h:78
Int_t fCounterReusingTEcnaRootFile
Definition: TEcnaObject.h:79
Int_t fCounterReusingTEcnaGui
Definition: TEcnaObject.h:68
Long_t fObjectTEcnaWrite
Definition: TEcnaObject.h:49
Long_t fObjectTEcnaParCout
Definition: TEcnaObject.h:41
Int_t fCounterCreateTEcnaParCout
Definition: TEcnaObject.h:57
Int_t fCounterReusingTEcnaRun
Definition: TEcnaObject.h:80
Int_t fCounterReusingTEcnaHistos
Definition: TEcnaObject.h:70
Int_t fCounterCreateTEcnaHistos
Definition: TEcnaObject.h:54
TString fTTBELL
Definition: TEcnaObject.h:33
Int_t fgMaxCar
Definition: TEcnaObject.h:31
Long_t fObjectTEcnaNArrayD
Definition: TEcnaObject.h:39
Int_t fCounterCreateTEcnaRootFile
Definition: TEcnaObject.h:63
Long_t fObjectTEcnaHistos
Definition: TEcnaObject.h:38
Int_t fCounterCreateTEcnaNumbering
Definition: TEcnaObject.h:56
Long_t fObjectTEcnaParHistos
Definition: TEcnaObject.h:43
Int_t fCounterCreateTEcnaParHistos
Definition: TEcnaObject.h:59
Int_t fCounterReusingTEcnaRead
Definition: TEcnaObject.h:77
Int_t fCounterCreateTEcnaParEcal
Definition: TEcnaObject.h:58
Long_t fObjectTEcnaRootFile
Definition: TEcnaObject.h:47
Long_t fObjectTEcnaHeader
Definition: TEcnaObject.h:37
Long_t fObjectTEcnaNumbering
Definition: TEcnaObject.h:40
Int_t fCounterReusingTEcnaParCout
Definition: TEcnaObject.h:73
void TEcnaObject::NumberCreateObjectMessage ( const TString  ClassName,
const Long_t &  PointerValue,
const Int_t &  NbOfObjects 
)

Definition at line 334 of file TEcnaObject.cc.

References gather_cfg::cout.

Referenced by RegisterPointer(), and TEcnaObject().

335 {
336 #define NOCM
337 #ifndef NOCM
338  cout << "*TEcnaObject::NumberCreateObjectMessage(...)> New ECNA object (pointer = "
339  << PointerValue << ") from TEcnaObject " << this
340  << ". Object# = " << setw(8) << NbOfObjects
341  << ", Class: " << ClassName;
342  if( NbOfObjects > 1 ){cout << " (INFO: more than 1 object)";}
343  cout << endl;
344 #endif // NOCM
345 }
tuple cout
Definition: gather_cfg.py:121
void TEcnaObject::NumberReuseObjectMessage ( const TString  ClassName,
const Long_t &  PointerValue,
const Int_t &  NbOfObjects 
)

Definition at line 347 of file TEcnaObject.cc.

References gather_cfg::cout.

Referenced by GetPointerValue().

348 {
349 #define NOCR
350 #ifndef NOCR
351  if( PointerValue != 0 )
352  {
353  cout << "*TEcnaObject::GetPointerValue(...)> INFO: pointer " << PointerValue
354  << " used again from TEcnaObject " << this
355  << ". " << setw(8) << NbOfObjects << " times, class: " << ClassName;
356  }
357  cout << endl;
358 #endif // NOCR
359 }
tuple cout
Definition: gather_cfg.py:121
Bool_t TEcnaObject::RegisterPointer ( const TString  ClassName,
const Long_t &  PointerValue 
)

Definition at line 102 of file TEcnaObject.cc.

References gather_cfg::cout, fCounterCreateTEcnaGui, fCounterCreateTEcnaHeader, fCounterCreateTEcnaHistos, fCounterCreateTEcnaNArrayD, fCounterCreateTEcnaNumbering, fCounterCreateTEcnaParCout, fCounterCreateTEcnaParEcal, fCounterCreateTEcnaParHistos, fCounterCreateTEcnaParPaths, fCounterCreateTEcnaRead, fCounterCreateTEcnaResultType, fCounterCreateTEcnaRootFile, fCounterCreateTEcnaRun, fCounterCreateTEcnaWrite, fObjectTEcnaGui, fObjectTEcnaHeader, fObjectTEcnaHistos, fObjectTEcnaNArrayD, fObjectTEcnaNumbering, fObjectTEcnaParCout, fObjectTEcnaParEcal, fObjectTEcnaParHistos, fObjectTEcnaParPaths, fObjectTEcnaRead, fObjectTEcnaResultType, fObjectTEcnaRootFile, fObjectTEcnaRun, fObjectTEcnaWrite, fTTBELL, and NumberCreateObjectMessage().

Referenced by TEcnaGui::TEcnaGui(), TEcnaHeader::TEcnaHeader(), TEcnaHistos::TEcnaHistos(), TEcnaNArrayD::TEcnaNArrayD(), TEcnaNumbering::TEcnaNumbering(), TEcnaParCout::TEcnaParCout(), TEcnaParEcal::TEcnaParEcal(), TEcnaParHistos::TEcnaParHistos(), TEcnaParPaths::TEcnaParPaths(), TEcnaRead::TEcnaRead(), TEcnaResultType::TEcnaResultType(), TEcnaRootFile::TEcnaRootFile(), TEcnaRun::TEcnaRun(), and TEcnaWrite::TEcnaWrite().

103 {
104  Bool_t ClassFound = kFALSE;
105 
106  if( ClassName == "TEcnaGui" )
107  {
108  ClassFound = kTRUE;
109  fObjectTEcnaGui = PointerValue;
112  }
113 
114  if( ClassName == "TEcnaHeader" )
115  {
116  ClassFound = kTRUE;
117  fObjectTEcnaHeader = PointerValue;
120  }
121 
122  if( ClassName == "TEcnaHistos" )
123  {
124  ClassFound = kTRUE;
125  fObjectTEcnaHistos = PointerValue;
128  }
129 
130  if( ClassName == "TEcnaNArrayD" )
131  {
132  ClassFound = kTRUE;
133  fObjectTEcnaNArrayD = PointerValue;
136  }
137 
138  if( ClassName == "TEcnaNumbering" )
139  {
140  ClassFound = kTRUE;
141  fObjectTEcnaNumbering = PointerValue;
144  }
145 
146  if( ClassName == "TEcnaParCout" )
147  {
148  ClassFound = kTRUE;
149  fObjectTEcnaParCout = PointerValue;
152  }
153 
154  if( ClassName == "TEcnaParEcal" )
155  {
156  ClassFound = kTRUE;
157  fObjectTEcnaParEcal = PointerValue;
160  }
161 
162  if( ClassName == "TEcnaParHistos" )
163  {
164  ClassFound = kTRUE;
165  fObjectTEcnaParHistos = PointerValue;
168  }
169 
170  if( ClassName == "TEcnaParPaths" )
171  {
172  ClassFound = kTRUE;
173  fObjectTEcnaParPaths = PointerValue;
176  }
177 
178  if( ClassName == "TEcnaRead" )
179  {
180  ClassFound = kTRUE;
181  fObjectTEcnaRead = PointerValue;
184  }
185 
186  if( ClassName == "TEcnaResultType" )
187  {
188  ClassFound = kTRUE;
189  fObjectTEcnaResultType = PointerValue;
192  }
193 
194  if( ClassName == "TEcnaRootFile" )
195  {
196  ClassFound = kTRUE;
197  fObjectTEcnaRootFile = PointerValue;
200  }
201 
202  if( ClassName == "TEcnaRun" )
203  {
204  ClassFound = kTRUE;
205  fObjectTEcnaRun = PointerValue;
208  }
209 
210  if( ClassName == "TEcnaWrite" )
211  {
212  ClassFound = kTRUE;
213  fObjectTEcnaWrite = PointerValue;
216  }
217 
218  //.........................................................................................
219  if( ClassFound == kFALSE )
220  {
221  cout << "!TEcnaObject::RegisterPointer(...)> Class " << ClassName
222  << " not found." << fTTBELL << endl;
223  }
224 
225  return ClassFound;
226 } // end of RegisterPointer(...)
Long_t fObjectTEcnaResultType
Definition: TEcnaObject.h:46
Long_t fObjectTEcnaRead
Definition: TEcnaObject.h:45
Int_t fCounterCreateTEcnaWrite
Definition: TEcnaObject.h:65
Long_t fObjectTEcnaGui
Definition: TEcnaObject.h:36
Long_t fObjectTEcnaParEcal
Definition: TEcnaObject.h:42
Int_t fCounterCreateTEcnaRead
Definition: TEcnaObject.h:61
Int_t fCounterCreateTEcnaHeader
Definition: TEcnaObject.h:53
Int_t fCounterCreateTEcnaParPaths
Definition: TEcnaObject.h:60
Int_t fCounterCreateTEcnaResultType
Definition: TEcnaObject.h:62
Int_t fCounterCreateTEcnaRun
Definition: TEcnaObject.h:64
Int_t fCounterCreateTEcnaNArrayD
Definition: TEcnaObject.h:55
Int_t fCounterCreateTEcnaGui
Definition: TEcnaObject.h:52
Long_t fObjectTEcnaRun
Definition: TEcnaObject.h:48
Long_t fObjectTEcnaWrite
Definition: TEcnaObject.h:49
Long_t fObjectTEcnaParCout
Definition: TEcnaObject.h:41
Int_t fCounterCreateTEcnaParCout
Definition: TEcnaObject.h:57
Int_t fCounterCreateTEcnaHistos
Definition: TEcnaObject.h:54
TString fTTBELL
Definition: TEcnaObject.h:33
Long_t fObjectTEcnaNArrayD
Definition: TEcnaObject.h:39
Int_t fCounterCreateTEcnaRootFile
Definition: TEcnaObject.h:63
Long_t fObjectTEcnaHistos
Definition: TEcnaObject.h:38
Int_t fCounterCreateTEcnaNumbering
Definition: TEcnaObject.h:56
Long_t fObjectTEcnaParHistos
Definition: TEcnaObject.h:43
Int_t fCounterCreateTEcnaParHistos
Definition: TEcnaObject.h:59
tuple cout
Definition: gather_cfg.py:121
Int_t fCounterCreateTEcnaParEcal
Definition: TEcnaObject.h:58
Long_t fObjectTEcnaRootFile
Definition: TEcnaObject.h:47
Long_t fObjectTEcnaHeader
Definition: TEcnaObject.h:37
Long_t fObjectTEcnaNumbering
Definition: TEcnaObject.h:40
void NumberCreateObjectMessage(const TString, const Long_t &, const Int_t &)
Definition: TEcnaObject.cc:334
Long_t fObjectTEcnaParPaths
Definition: TEcnaObject.h:44

Member Data Documentation

Int_t TEcnaObject::fCounterCreateTEcnaGui
private

Definition at line 52 of file TEcnaObject.h.

Referenced by Init(), and RegisterPointer().

Int_t TEcnaObject::fCounterCreateTEcnaHeader
private

Definition at line 53 of file TEcnaObject.h.

Referenced by Init(), and RegisterPointer().

Int_t TEcnaObject::fCounterCreateTEcnaHistos
private

Definition at line 54 of file TEcnaObject.h.

Referenced by Init(), and RegisterPointer().

Int_t TEcnaObject::fCounterCreateTEcnaNArrayD
private

Definition at line 55 of file TEcnaObject.h.

Referenced by Init(), and RegisterPointer().

Int_t TEcnaObject::fCounterCreateTEcnaNumbering
private

Definition at line 56 of file TEcnaObject.h.

Referenced by Init(), and RegisterPointer().

Int_t TEcnaObject::fCounterCreateTEcnaParCout
private

Definition at line 57 of file TEcnaObject.h.

Referenced by Init(), and RegisterPointer().

Int_t TEcnaObject::fCounterCreateTEcnaParEcal
private

Definition at line 58 of file TEcnaObject.h.

Referenced by Init(), and RegisterPointer().

Int_t TEcnaObject::fCounterCreateTEcnaParHistos
private

Definition at line 59 of file TEcnaObject.h.

Referenced by Init(), and RegisterPointer().

Int_t TEcnaObject::fCounterCreateTEcnaParPaths
private

Definition at line 60 of file TEcnaObject.h.

Referenced by RegisterPointer().

Int_t TEcnaObject::fCounterCreateTEcnaRead
private

Definition at line 61 of file TEcnaObject.h.

Referenced by Init(), and RegisterPointer().

Int_t TEcnaObject::fCounterCreateTEcnaResultType
private

Definition at line 62 of file TEcnaObject.h.

Referenced by Init(), and RegisterPointer().

Int_t TEcnaObject::fCounterCreateTEcnaRootFile
private

Definition at line 63 of file TEcnaObject.h.

Referenced by Init(), and RegisterPointer().

Int_t TEcnaObject::fCounterCreateTEcnaRun
private

Definition at line 64 of file TEcnaObject.h.

Referenced by Init(), and RegisterPointer().

Int_t TEcnaObject::fCounterCreateTEcnaWrite
private

Definition at line 65 of file TEcnaObject.h.

Referenced by Init(), and RegisterPointer().

Int_t TEcnaObject::fCounterReusingTEcnaGui
private

Definition at line 68 of file TEcnaObject.h.

Referenced by GetPointerValue(), and Init().

Int_t TEcnaObject::fCounterReusingTEcnaHeader
private

Definition at line 69 of file TEcnaObject.h.

Referenced by GetPointerValue(), and Init().

Int_t TEcnaObject::fCounterReusingTEcnaHistos
private

Definition at line 70 of file TEcnaObject.h.

Referenced by GetPointerValue(), and Init().

Int_t TEcnaObject::fCounterReusingTEcnaNArrayD
private

Definition at line 71 of file TEcnaObject.h.

Referenced by GetPointerValue(), and Init().

Int_t TEcnaObject::fCounterReusingTEcnaNumbering
private

Definition at line 72 of file TEcnaObject.h.

Referenced by GetPointerValue(), and Init().

Int_t TEcnaObject::fCounterReusingTEcnaParCout
private

Definition at line 73 of file TEcnaObject.h.

Referenced by GetPointerValue(), and Init().

Int_t TEcnaObject::fCounterReusingTEcnaParEcal
private

Definition at line 74 of file TEcnaObject.h.

Referenced by GetPointerValue(), and Init().

Int_t TEcnaObject::fCounterReusingTEcnaParHistos
private

Definition at line 75 of file TEcnaObject.h.

Referenced by GetPointerValue(), and Init().

Int_t TEcnaObject::fCounterReusingTEcnaParPaths
private

Definition at line 76 of file TEcnaObject.h.

Referenced by GetPointerValue().

Int_t TEcnaObject::fCounterReusingTEcnaRead
private

Definition at line 77 of file TEcnaObject.h.

Referenced by GetPointerValue(), and Init().

Int_t TEcnaObject::fCounterReusingTEcnaResultType
private

Definition at line 78 of file TEcnaObject.h.

Referenced by GetPointerValue(), and Init().

Int_t TEcnaObject::fCounterReusingTEcnaRootFile
private

Definition at line 79 of file TEcnaObject.h.

Referenced by GetPointerValue(), and Init().

Int_t TEcnaObject::fCounterReusingTEcnaRun
private

Definition at line 80 of file TEcnaObject.h.

Referenced by GetPointerValue(), and Init().

Int_t TEcnaObject::fCounterReusingTEcnaWrite
private

Definition at line 81 of file TEcnaObject.h.

Referenced by GetPointerValue(), and Init().

Int_t TEcnaObject::fgMaxCar
private

Definition at line 31 of file TEcnaObject.h.

Referenced by Init().

Long_t TEcnaObject::fObjectTEcnaGui
private

Definition at line 36 of file TEcnaObject.h.

Referenced by GetPointerValue(), Init(), and RegisterPointer().

Long_t TEcnaObject::fObjectTEcnaHeader
private

Definition at line 37 of file TEcnaObject.h.

Referenced by GetPointerValue(), Init(), and RegisterPointer().

Long_t TEcnaObject::fObjectTEcnaHistos
private

Definition at line 38 of file TEcnaObject.h.

Referenced by GetPointerValue(), Init(), and RegisterPointer().

Long_t TEcnaObject::fObjectTEcnaNArrayD
private

Definition at line 39 of file TEcnaObject.h.

Referenced by GetPointerValue(), Init(), and RegisterPointer().

Long_t TEcnaObject::fObjectTEcnaNumbering
private

Definition at line 40 of file TEcnaObject.h.

Referenced by GetPointerValue(), Init(), and RegisterPointer().

Long_t TEcnaObject::fObjectTEcnaParCout
private

Definition at line 41 of file TEcnaObject.h.

Referenced by GetPointerValue(), Init(), and RegisterPointer().

Long_t TEcnaObject::fObjectTEcnaParEcal
private

Definition at line 42 of file TEcnaObject.h.

Referenced by GetPointerValue(), Init(), and RegisterPointer().

Long_t TEcnaObject::fObjectTEcnaParHistos
private

Definition at line 43 of file TEcnaObject.h.

Referenced by GetPointerValue(), Init(), and RegisterPointer().

Long_t TEcnaObject::fObjectTEcnaParPaths
private

Definition at line 44 of file TEcnaObject.h.

Referenced by GetPointerValue(), and RegisterPointer().

Long_t TEcnaObject::fObjectTEcnaRead
private

Definition at line 45 of file TEcnaObject.h.

Referenced by GetPointerValue(), Init(), and RegisterPointer().

Long_t TEcnaObject::fObjectTEcnaResultType
private

Definition at line 46 of file TEcnaObject.h.

Referenced by GetPointerValue(), Init(), and RegisterPointer().

Long_t TEcnaObject::fObjectTEcnaRootFile
private

Definition at line 47 of file TEcnaObject.h.

Referenced by GetPointerValue(), Init(), and RegisterPointer().

Long_t TEcnaObject::fObjectTEcnaRun
private

Definition at line 48 of file TEcnaObject.h.

Referenced by GetPointerValue(), Init(), and RegisterPointer().

Long_t TEcnaObject::fObjectTEcnaWrite
private

Definition at line 49 of file TEcnaObject.h.

Referenced by GetPointerValue(), Init(), and RegisterPointer().

TString TEcnaObject::fTTBELL
private

Definition at line 33 of file TEcnaObject.h.

Referenced by Init(), and RegisterPointer().