HighLAND
EventBoxTracker.cxx
1 #include "EventBoxTracker.hxx"
2 
3 
4 //********************************************************************
5 EventBoxTracker::EventBoxTracker():EventBoxB(){
6 //********************************************************************
7 
8  for (Int_t i=0;i<2;i++){
9  nFGDMichelElectrons[i] = 0;
10  FGDMichelElectrons[i] = NULL;
11  }
12 }
13 
14 //********************************************************************
15 EventBoxTracker::~EventBoxTracker(){
16 //********************************************************************
17 
18  for (Int_t i=0;i<2;i++){
19  if (FGDMichelElectrons[i])
20  delete [] FGDMichelElectrons[i];
21  FGDMichelElectrons[i] = NULL;
22  }
23 }