00001 // 00002 // ******************************************************************** 00003 // * DISCLAIMER * 00004 // * * 00005 // * The following disclaimer summarizes all the specific disclaimers * 00006 // * of contributors to this software. The specific disclaimers,which * 00007 // * govern, are listed with their locations in: * 00008 // * http://cern.ch/geant4/license * 00009 // * * 00010 // * Neither the authors of this software system, nor their employing * 00011 // * institutes,nor the agencies providing financial support for this * 00012 // * work make any representation or warranty, express or implied, * 00013 // * regarding this software system or assume any liability for its * 00014 // * use. * 00015 // * * 00016 // * This code implementation is the intellectual property of the * 00017 // * GEANT4 collaboration. * 00018 // * By copying, distributing or modifying the Program (or any work * 00019 // * based on the Program) you indicate your acceptance of this * 00020 // * statement, and all its terms. * 00021 // ******************************************************************** 00022 // 00023 // 00024 // -------------------------------------------------------------- 00025 // GEANT 4 - Neutrinoless Double Beta Decay Experiment 00026 // 00027 // For further information to this code contact: 00028 // Xiang Liu <xliu@mppmu.mpg.de> 00029 // Bernhard Schwingenheuer <B.Schwingenheuer@mpi-hd.mpg.de> 00030 // -------------------------------------------------------------- 00031 // Comments 00032 // TrackingAction header 00033 // Date : 08-10-04 00034 // -------------------------------------------------------------- 00035 // 00036 #ifndef MaGeManagementTrackingAction_h 00037 #define MaGeManagementTrackingAction_h 1 00038 00039 #include "G4UserTrackingAction.hh" 00040 00041 class MaGeManagementTrackingAction : public G4UserTrackingAction 00042 { 00043 public: 00044 MaGeManagementTrackingAction(); 00045 virtual ~MaGeManagementTrackingAction(); 00046 00047 virtual void PreUserTrackingAction(const G4Track*); 00048 }; 00049 00050 #endif 00051