Import Geant4 10.7.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2020-06-26 10:23:25 +02:00
parent c02c370437
commit 67ba86d073
1871 changed files with 174422 additions and 131884 deletions
@@ -23,38 +23,31 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
//
//
//---------------------------------------------------------------
//
// G4VUserPrimaryVertexInformation
//
// Class Description:
// Class description:
//
// Abstract class which the user can derive his/her own concrete
// class for toring user's information associating with a G4PrimaryVertex
// Abstract class from which the user can derive a concrete class
// for tuning user's information associated with a G4PrimaryVertex
// class object.
//
// It is user's responsibility to construct a concrete class object
// and set the pointer to proper G4PrimaryVertex object.
//
// The concrete class object is deleted by Geant4 kernel when
// It is user's responsibility to construct a concrete class object
// and set the pointer to the proper G4PrimaryVertex object.
// The concrete class object is deleted by Geant4 kernel when
// associated G4PrimaryVertex object is deleted.
#ifndef G4VUserPrimaryVertexInformation_H
#define G4VUserPrimaryVertexInformation_H 1
// Author: M.Asai (SLAC)
// --------------------------------------------------------------------
#ifndef G4VUserPrimaryVertexInformation_hh
#define G4VUserPrimaryVertexInformation_hh 1
class G4VUserPrimaryVertexInformation
{
public:
G4VUserPrimaryVertexInformation();
virtual ~G4VUserPrimaryVertexInformation();
public:
virtual void Print() const = 0;
};
#endif