Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-03-23 16:00:31

0001 #include "SimG4Core/Physics/interface/CMSG4TrackInterface.h"
0002 
0003 G4ThreadLocal CMSG4TrackInterface* CMSG4TrackInterface::interface_ = nullptr;
0004 
0005 CMSG4TrackInterface* CMSG4TrackInterface::instance() {
0006   if (nullptr == interface_) {
0007     static G4ThreadLocalSingleton<CMSG4TrackInterface> inst;
0008     interface_ = inst.Instance();
0009   }
0010   return interface_;
0011 }
0012 
0013 CMSG4TrackInterface::CMSG4TrackInterface() {};
0014 
0015 CMSG4TrackInterface::~CMSG4TrackInterface() {};