Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:27

0001 #ifndef LaserAlignmentSimulation_LaserSteppingVerbose_h
0002 #define LaserAlignmentSimulation_LaserSteppingVerbose_h
0003 
0004 /** \class LaserSteppingVerbose
0005  *  Class to manage verbose stepping
0006  *
0007  *  $Date: 2007/03/20 12:00:59 $
0008  *  $Revision: 1.2 $
0009  *  \author Maarten Thomas
0010  */
0011 #include "G4SteppingVerbose.hh"
0012 
0013 class LaserSteppingVerbose : public G4SteppingVerbose {
0014 public:
0015   /// constructor
0016   LaserSteppingVerbose();
0017   /// destructor
0018   ~LaserSteppingVerbose() override;
0019   /// step information
0020   void StepInfo() override;
0021   /// tracking information
0022   void TrackingStarted() override;
0023 };
0024 #endif