Import Geant4 6.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 10:56:29 +02:00
parent 1d812b78b1
commit e083ffb441
1415 changed files with 111223 additions and 21207 deletions
+10 -1
View File
@@ -1,4 +1,4 @@
# $Id: GNUmakefile,v 1.7 2003/11/12 22:46:00 duns Exp $
# $Id: GNUmakefile,v 1.9 2004/06/11 14:30:49 gcosmo Exp $
name := G4RayTracer
@@ -6,10 +6,19 @@ ifndef G4INSTALL
G4INSTALL = ../../..
endif
GLOBLIBS = libG4vis_management.lib libG4modeling.lib
GLOBLIBS += libG4run.lib libG4event.lib
GLOBLIBS += libG4tracking.lib libG4processes.lib libG4digits_hits.lib
GLOBLIBS += libG4track.lib libG4particles.lib libG4geometry.lib
GLOBLIBS += libG4materials.lib libG4graphics_reps.lib
GLOBLIBS += libG4intercoms.lib libG4global.lib
include $(G4INSTALL)/config/architecture.gmk
include $(G4INSTALL)/config/G4VIS_BUILD.gmk
include $(G4INSTALL)/config/interactivity.gmk
CPPFLAGS += -DG4VIS_ALLOC_EXPORT
CPPFLAGS += -I$(G4BASE)/visualization/modeling/include
CPPFLAGS += -I$(G4BASE)/visualization/management/include
CPPFLAGS += -I$(G4BASE)/graphics_reps/include
+5 -1
View File
@@ -1,4 +1,4 @@
$Id: History,v 1.24 2003/11/12 22:46:00 duns Exp $
$Id: History,v 1.25 2004/06/11 15:23:39 gcosmo Exp $
-------------------------------------------------------------------
=========================================================
@@ -24,6 +24,10 @@ committal in the CVS repository !
History file for visualization category
---------------------------------------
11th June 2004 Gabriele Cosmo (raytracer-V06-01-00)
- Use global flag G4VIS_ALLOC_EXPORT to export extern symbols for DLLs.
Modified GNUmakefile and rearranged usage of extern symbols in classes.
12th November 2003 Mark Donszelmann
- GNUmakefile: added Modeling/include directory to compile on Windows.
@@ -21,8 +21,8 @@
// ********************************************************************
//
//
// $Id: G4RayTrajectory.hh,v 1.11 2003/06/16 17:13:42 gunter Exp $
// GEANT4 tag $Name: geant4-05-02-patch-01 $
// $Id: G4RayTrajectory.hh,v 1.14 2004/06/11 14:30:49 gcosmo Exp $
// GEANT4 tag $Name: geant4-06-02 $
//
//
@@ -87,8 +87,11 @@ class G4RayTrajectory : public G4VTrajectory
std::vector<G4RayTrajectoryPoint*>* positionRecord;
};
extern G4Allocator<G4RayTrajectory> G4RayTrajectoryAllocator;
#if defined G4VIS_ALLOC_EXPORT
extern G4DLLEXPORT G4Allocator<G4RayTrajectory> G4RayTrajectoryAllocator;
#else
extern G4DLLIMPORT G4Allocator<G4RayTrajectory> G4RayTrajectoryAllocator;
#endif
inline void* G4RayTrajectory::operator new(size_t)
{
@@ -21,8 +21,8 @@
// ********************************************************************
//
//
// $Id: G4RayTrajectoryPoint.hh,v 1.5 2002/10/16 11:42:48 johna Exp $
// GEANT4 tag $Name: geant4-05-02-patch-01 $
// $Id: G4RayTrajectoryPoint.hh,v 1.8 2004/06/11 14:30:50 gcosmo Exp $
// GEANT4 tag $Name: geant4-06-02 $
//
//
@@ -77,7 +77,11 @@ class G4RayTrajectoryPoint :public G4VTrajectoryPoint
// Dummy function (not used) to satisfy base class pure virtual function.
};
extern G4Allocator<G4RayTrajectoryPoint> G4RayTrajectoryPointAllocator;
#if defined G4VIS_ALLOC_EXPORT
extern G4DLLEXPORT G4Allocator<G4RayTrajectoryPoint> G4RayTrajectoryPointAllocator;
#else
extern G4DLLIMPORT G4Allocator<G4RayTrajectoryPoint> G4RayTrajectoryPointAllocator;
#endif
inline void* G4RayTrajectoryPoint::operator new(size_t)
{
@@ -21,8 +21,8 @@
// ********************************************************************
//
//
// $Id: G4RayTrajectory.cc,v 1.12 2003/06/16 17:13:45 gunter Exp $
// GEANT4 tag $Name: geant4-05-02-patch-01 $
// $Id: G4RayTrajectory.cc,v 1.14 2004/06/11 14:30:51 gcosmo Exp $
// GEANT4 tag $Name: geant4-06-02 $
//
//
//
@@ -31,7 +31,6 @@
//G4RayTrajectory.cc
///////////////////
#include "G4RayTrajectory.hh"
#include "G4RayTrajectoryPoint.hh"
#include "G4Step.hh"
@@ -21,8 +21,8 @@
// ********************************************************************
//
//
// $Id: G4RayTrajectoryPoint.cc,v 1.3 2001/07/11 10:09:05 gunter Exp $
// GEANT4 tag $Name: geant4-05-02-patch-01 $
// $Id: G4RayTrajectoryPoint.cc,v 1.5 2004/06/11 14:30:51 gcosmo Exp $
// GEANT4 tag $Name: geant4-06-02 $
//
//
//
@@ -31,7 +31,6 @@
//G4RayTrajectoryPoint.cc
///////////////////////
#include"G4RayTrajectoryPoint.hh"
G4Allocator<G4RayTrajectoryPoint> G4RayTrajectoryPointAllocator;