00001 /* BDSIM code. Version 1.0 00002 Author: Grahame A. Blair, Royal Holloway, Univ. of London. 00003 Last modified 24.7.2002 00004 Copyright (c) 2002 by G.A.Blair. ALL RIGHTS RESERVED. 00005 */ 00006 // 00007 // ******************************************************************** 00008 // * DISCLAIMER * 00009 // * * 00010 // * The following disclaimer summarizes all the specific disclaimers * 00011 // * of contributors to this software. The specific disclaimers,which * 00012 // * govern, are listed with their locations in: * 00013 // * http://cern.ch/geant4/license * 00014 // * * 00015 // * Neither the authors of this software system, nor their employing * 00016 // * institutes,nor the agencies providing financial support for this * 00017 // * work make any representation or warranty, express or implied, * 00018 // * regarding this software system or assume any liability for its * 00019 // * use. * 00020 // * * 00021 // * This code implementation is the intellectual property of the * 00022 // * GEANT4 collaboration. * 00023 // * By copying, distributing or modifying the Program (or any work * 00024 // * based on the Program) you indicate your acceptance of this * 00025 // * statement, and all its terms. * 00026 // ******************************************************************** 00027 // 00028 00029 #ifndef BDSUserTrackingAction_h 00030 #define BDSUserTrackingAction_h 1 00031 00032 #include "G4UserTrackingAction.hh" 00033 #include "BDSNeutronTrackInfo.hh" 00034 00035 //class BDSUserTrackingAction : public G4UserTrackingAction { 00036 class BDSUserTrackingAction : public G4UserTrackingAction { 00037 00038 public: 00039 BDSUserTrackingAction(){;}; 00040 ~BDSUserTrackingAction(); 00041 00042 void PreUserTrackingAction(const G4Track*); 00043 00044 private: 00045 00046 }; 00047 00048 #endif