Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:26

0001 #include "SimG4Core/Notification/interface/CurrentG4Track.h"
0002 
0003 thread_local const G4Track* CurrentG4Track::m_track = nullptr;
0004 
0005 void CurrentG4Track::setTrack(const G4Track* t) { m_track = t; }
0006 
0007 const G4Track* CurrentG4Track::track() { return m_track; }