Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-01 07:49:05

0001 #include "RootSetupWrapper.h"
0002 #include "Setup.h"
0003 
0004 ClassImp(RootSetupWrapper);
0005 
0006 
0007 RootSetupWrapper::RootSetupWrapper(Setup* s){
0008   isInit      =s->isInit;
0009   assemblyID  =s->assemblyID;
0010   ROunit      =s->ROunit;
0011   ROchannel   =s->ROchannel;
0012   Board       =s->Board;
0013   CellIDfromRO=s->CellIDfromRO;
0014   ModPos      =s->ModPos;
0015   SegmentSum  =s->SegmentSum;
0016   
0017   nMaxLayer   = s->nMaxLayer;
0018   nMaxRow     = s->nMaxRow;
0019   nMaxColumn  = s->nMaxColumn;
0020   nMaxModule  = s->nMaxModule;
0021   nMaxROUnit  = s->nMaxROUnit;
0022   maxCellID   = s->maxCellID;
0023   sumOpt      = s->sumOpt;
0024 }
0025