Import Geant4 10.3.0 source tree
This commit is contained in:
@@ -1,3 +1,28 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// Bogacki-Shampine - 4 - 3(2) non-FSAL implementation
|
||||
//
|
||||
// An implementation of the embedded RK method from the paper
|
||||
@@ -14,10 +39,6 @@
|
||||
//
|
||||
// First version: 20 May 2015
|
||||
//
|
||||
// This code is made available subject to the Geant4 license, a copy of
|
||||
// which is available at
|
||||
// http://geant4.org/license
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
|
||||
@@ -1,3 +1,28 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// An implementation of the embedded RK method from the following paper
|
||||
// by P. Bogacki and L. F. Shampine:
|
||||
// “An efficient Runge-Kutta (4,5) pair,”
|
||||
@@ -16,10 +41,6 @@
|
||||
//
|
||||
// Work supported by the Google Summer of Code 2015.
|
||||
//
|
||||
// This code is made available subject to the Geant4 license, a copy of
|
||||
// which is available at
|
||||
// http://geant4.org/license
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef Bogacki_Shampine_45
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4ClassicalRK4.hh 66356 2012-12-18 09:02:32Z gcosmo $
|
||||
// $Id: G4ClassicalRK4.hh 101384 2016-11-16 11:03:44Z gcosmo $
|
||||
//
|
||||
//
|
||||
// class G4ClassicalRK4
|
||||
@@ -37,8 +37,12 @@
|
||||
// History:
|
||||
// - Created: J.Apostolakis, V.Grichine - 30.1.97
|
||||
// - Moved into G4MagErrorStepper: W.Wander <wwc@mit.edu> - 12/09/97
|
||||
// - Fix: D.Sorokin add header guard
|
||||
// -------------------------------------------------------------------
|
||||
|
||||
#ifndef G4ClassicalRK4_HH
|
||||
#define G4ClassicalRK4_HH
|
||||
|
||||
#include "G4MagErrorStepper.hh"
|
||||
|
||||
class G4ClassicalRK4 : public G4MagErrorStepper
|
||||
@@ -90,3 +94,5 @@ class G4ClassicalRK4 : public G4MagErrorStepper
|
||||
|
||||
G4double *dydxm, *dydxt, *yt; // scratch space - not state
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@@ -1,3 +1,28 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// DormandPrince7 - 5(4) FSAL implementation by Somnath Banerjee
|
||||
// Supervision / code review: John Apostolakis
|
||||
//
|
||||
@@ -5,10 +30,6 @@
|
||||
//
|
||||
// First version: 25 May 2015
|
||||
//
|
||||
// This code is made available subject to the Geant4 license, a copy of
|
||||
// which is available at
|
||||
// http://geant4.org/license
|
||||
//
|
||||
// $ID: FDormandPrince745.hh $
|
||||
//
|
||||
// History
|
||||
|
||||
@@ -1,4 +1,29 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// G4TsitourasRK45.hh
|
||||
// Geant4
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user