Import Geant4 10.7.0 source tree
This commit is contained in:
@@ -23,42 +23,38 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//---------------------------------------------------------------
|
||||
//
|
||||
// G4VAuxiliaryTrackInformation
|
||||
//
|
||||
// Class Description:
|
||||
// Class description:
|
||||
//
|
||||
// Abstract class which the user can derive his/her own concrete
|
||||
// class for toring user's information associating with a G4Track
|
||||
// class object.
|
||||
// Abstract class from which the user can derive a concrete class for
|
||||
// storing user's information associated with a G4Track class object.
|
||||
//
|
||||
// It is user's responsibility
|
||||
// 1) Construct a concrete class object and set the pointer to
|
||||
// proper G4Track object
|
||||
// It is user's responsibility:
|
||||
// 1) To construct a concrete class object and set the pointer to
|
||||
// the proper G4Track
|
||||
// 2) Concrete class derived from this class is expected to use G4Allocator
|
||||
// for memory management or something equivarent for performance reason
|
||||
// for memory management or something equivarent for performance reason
|
||||
//
|
||||
// To set a pointer of a concrete class object to G4Track in
|
||||
// To set a pointer of a concrete class object to G4Track in
|
||||
// G4AuxiliaryTrackingInformation concrete implementation, given the G4Track
|
||||
// object is available only by "pointer to const", SetAuxiliaryTrackInformation()
|
||||
// method of G4TrackingManager is available.
|
||||
// object is available only by "pointer to const",
|
||||
// SetAuxiliaryTrackInformation() method of G4TrackingManager is available.
|
||||
//
|
||||
// The concrete class object is deleted by Geant4 kernel when
|
||||
// The concrete class object is deleted by Geant4 kernel when
|
||||
// associated G4Track object is deleted.
|
||||
|
||||
|
||||
#ifndef G4VAuxiliaryTrackInformation_H
|
||||
#define G4VAuxiliaryTrackInformation_H 1
|
||||
// Author: Makoto Asai, 3 June 2005
|
||||
// --------------------------------------------------------------------
|
||||
#ifndef G4VAuxiliaryTrackInformation_hh
|
||||
#define G4VAuxiliaryTrackInformation_hh 1
|
||||
|
||||
#include "globals.hh"
|
||||
|
||||
class G4VAuxiliaryTrackInformation
|
||||
{
|
||||
public: // With Description
|
||||
{
|
||||
public:
|
||||
|
||||
G4VAuxiliaryTrackInformation();
|
||||
virtual ~G4VAuxiliaryTrackInformation();
|
||||
|
||||
@@ -66,4 +62,3 @@ class G4VAuxiliaryTrackInformation
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user