// // ******************************************************************** // * 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. * // ******************************************************************** // // // $Id: G4NeutronHPLegendreTable.hh,v 1.12 2007/06/06 12:45:13 ahoward Exp $ // GEANT4 tag $Name: geant4-09-02-ref-02 $ // #ifndef G4NeutronHPLegendreTable_h #define G4NeutronHPLegendreTable_h 1 #include "globals.hh" #include #include "G4ios.hh" #include "G4InterpolationManager.hh" class G4NeutronHPLegendreTable { public: G4NeutronHPLegendreTable() { nCoeff=0; theCoeff = 0; } ~G4NeutronHPLegendreTable(){if(theCoeff!=0) delete [] theCoeff;} void operator= (const G4NeutronHPLegendreTable & aSet) { if(&aSet!=this) { theRep = aSet.theRep; theEnergy = aSet.theEnergy; theTemp = aSet.theTemp; theManager = aSet.theManager; nCoeff = aSet.nCoeff; if(theCoeff!=0) delete [] theCoeff; theCoeff = new G4double[nCoeff]; for(G4int i=0; i> eNeu >> nPoly; eNeu *= eV; Init(eNeu, nPoly); for(G4int l=0; l> coeff; SetCoeff(l+1, coeff); } } inline void Init(G4double e, G4int n) { nCoeff = n+1; theCoeff = new G4double[nCoeff]; for(G4int i=0; i