Ignore:
Timestamp:
Nov 25, 2009, 5:13:58 PM (15 years ago)
Author:
garnier
Message:

update CVS release candidate geant4.9.3.01

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/track/include/G4VUserTrackInformation.hh

    r1058 r1196  
    2525//
    2626//
    27 // $Id: G4VUserTrackInformation.hh,v 1.6 2006/06/29 21:14:59 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-02-ref-02 $
     27// $Id: G4VUserTrackInformation.hh,v 1.8 2009/10/19 17:11:43 kurasige Exp $
     28// GEANT4 tag $Name: geant4-09-03-cand-01 $
    2929//
    3030//
     
    5757#define G4VUserTrackInformation_H 1
    5858
     59#include "globals.hh"
     60
    5961class G4VUserTrackInformation
    60 {
    61   public:
     62{ 
     63  public: // With Description
    6264    G4VUserTrackInformation();
     65    G4VUserTrackInformation(const G4String& infoType);
     66    // String is provided to indicate Type of UserTrackInfo class 
     67    // User is recommended to set the type of his/her class 
     68
    6369    virtual ~G4VUserTrackInformation();
    6470
    65   public:
    6671    virtual void Print() const = 0;
     72   
     73    const G4String& GetType() const;
     74    // get Type of this UserTrackInfo     
     75 
     76  protected:
     77    G4String fType;   
    6778};
    6879
     80inline
     81 const G4String& G4VUserTrackInformation::GetType() const
     82{
     83  return fType;
     84}
     85   
    6986#endif
    7087
Note: See TracChangeset for help on using the changeset viewer.