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  )

//////////////////////////////////////////////////////////////////////// // TIndexCell // // sort collection with attributes // // //////////////////////////////////////////////////////////////////////// /* Convension about levels of cell ic: 0 - value of ic 1 - list of ic 2 - sublists of list of ic...

Example of usage:

Copy constructor - do real copy of all objects

28{
30 fValue = c.Value();
31 if(c.List()) {
32 int ncc = c.GetEntries();
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}
sort collection with attributes
Definition: TIndexCell.h:19