G4NeutronHPContEnergyAngular.hh

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 //
00027 // $Id$
00028 //
00029 // 080721 Add ClearHistories() method by T. Koi
00030 //
00031 #ifndef G4NeutronHPContEnergyAngular_h
00032 #define G4NeutronHPContEnergyAngular_h 1
00033 
00034 #include "G4ios.hh"
00035 #include <fstream>
00036 #include "globals.hh"
00037 #include "G4VNeutronHPEnergyAngular.hh"
00038 #include "G4NeutronHPContAngularPar.hh"
00039 #include "G4InterpolationManager.hh"
00040 
00041 // we will need one of these per product.
00042 
00043 class G4NeutronHPContEnergyAngular : public G4VNeutronHPEnergyAngular
00044 {
00045   public:
00046   
00047   G4NeutronHPContEnergyAngular()
00048   {
00049     theAngular = 0;
00050     currentMeanEnergy = -2;
00051   }
00052   
00053   ~G4NeutronHPContEnergyAngular()
00054   {
00055     if(theAngular!=0) delete [] theAngular;
00056   }
00057   
00058   public:
00059   
00060   void Init(std::ifstream & aDataFile)
00061   {
00062     aDataFile >> theTargetCode >> theAngularRep >> theInterpolation >> nEnergy;
00063     theAngular = new G4NeutronHPContAngularPar[nEnergy];
00064     theManager.Init(aDataFile);
00065     for(G4int i=0; i<nEnergy; i++)
00066     {
00067       theAngular[i].Init(aDataFile);
00068       theAngular[i].SetInterpolation(theInterpolation);
00069     }
00070   }
00071 G4double MeanEnergyOfThisInteraction();
00072 G4ReactionProduct * Sample(G4double anEnergy, G4double massCode, G4double mass);
00073   
00074   private:
00075   
00076   G4double theTargetCode;
00077   G4int theAngularRep;
00078   G4int nEnergy;
00079   
00080   G4int theInterpolation;
00081 
00082   G4InterpolationManager theManager; // knows the interpolation between stores
00083   G4NeutronHPContAngularPar * theAngular;
00084   
00085   G4double currentMeanEnergy;
00086 
00087    public:
00088       void ClearHistories(); 
00089   
00090 };
00091 #endif

Generated on Mon May 27 17:48:59 2013 for Geant4 by  doxygen 1.4.7