Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:36

0001 #include <cstring>
0002 #include "SFastSimOpticalModel.hh"
0003 
0004 std::vector<SFastSimOpticalModel*> SFastSimOpticalModel::record = {} ;
0005 
0006 SFastSimOpticalModel::SFastSimOpticalModel(const char* name_)
0007     :
0008     name( name_ ? strdup(name_) : nullptr )
0009 {
0010     record.push_back(this); 
0011 }
0012