FEDRA emulsion software from the OPERA Collaboration
TIndexCell.cpp File Reference
#include "TIndexCell.h"
Include dependency graph for TIndexCell.cpp:

Functions

 ClassImp (TIndexCell) ClassImp(TIndexCellIter) ClassImp(TIndexCellIterV) TIndexCell
 

Function Documentation

◆ ClassImp()

ClassImp ( TIndexCell  )
28 {
29  // Copy constructor - do real copy of all objects
30  fValue = c.Value();
31  if(c.List()) {
32  int ncc = c.GetEntriesFast();
33  fList = new TObjArray(ncc);
34  for(int i=0; i<ncc; i++) {
35  fList->Add(new TIndexCell( *(c.At(i))));
36  fList->SetName((c.List())->GetName());
37  }
38  }
39  else fList=0;
40 }
Definition: TIndexCell.h:19