Main Page | Namespace List | Class Hierarchy | Class List | File List | Class Members | File Members | Related Pages

mf15classes.hpp

Go to the documentation of this file.
00001 /*
00002  * ******** fete: From ENDF To ENDL *********
00003  * 
00004  * Copyright (c) 2006, The Regents of the University of California. 
00005  * All rights reserved.
00006  * 
00007  * Produced at the Lawrence Livermore National Laboratory. 
00008  * Written by David A. Brown, Gerry Hedstrom, Tony Hill
00009  * 
00010  * This file is part of fete v1.0  (UCRL-CODE-218718)
00011  * 
00012  * Please read the COPYING file for "Our Notice and GNU General 
00013  * Public License" in the root of this software distribution.  
00014  * 
00015  * This program is free software; you can redistribute it and/or modify 
00016  * it under the terms of the GNU General Public License (as published by 
00017  * the Free Software Foundation) version 2, dated June 1991. 
00018  * 
00019  * This program is distributed in the hope that it will be useful, 
00020  * but WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF 
00021  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms 
00022  * and conditions of the GNU General Public License for more details. 
00023  * 
00024  * You should have received a copy of the GNU General Public License along 
00025  * with this program; if not, write to the Free Software Foundation, Inc., 
00026  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
00027  * 
00028  * $Revision: 1735 $
00029  * $Date: 2006-02-09 13:47:26 -0800 (Thu, 09 Feb 2006) $
00030  * $Author: dbrown $
00031  * $Id: mf15classes.hpp 1735 2006-02-09 21:47:26Z dbrown $
00032  * 
00033  * ******** fete: From ENDF To ENDL *********
00034  */
00035 
00036 // header for the MF=15 translation code
00037 
00038 #ifndef MF15CLASSES
00039 #define MF15CLASSES
00040 
00041 #include "mf5classes.hpp"
00042 #include "ENDF_file.hpp"
00043 #include "multiplicity.hpp"
00044 
00045 using namespace std;
00046 
00047 // ----------- class MF15_list -----------------
00048 // derive this class from mf5_table in order to use the table_interp routine
00049 //! Class to handle the MF=15 data
00050 class MF15_list : public mf5_table
00051 {
00052 private:
00053   // the weights for this model, depending on the incident neutron energy
00054   one_d_table weights;
00055 
00056 public:
00057   multiplicity multiple;
00058 
00059   //! Reads in all continuuous gamma distributions.
00060   void read_data( mf15_file& inFile );
00061 
00062   //! Reads in continuuous gamma distribution for a single incident neutron energy.
00063   //! Sets done = true if the incident energy exceeds the ENDL maximum
00064   void one_e_dist( mf15_file& inFile, bool *done );
00065 
00066 };
00067 
00068 #endif

Generated on Thu Sep 7 10:30:09 2006 for fete -- From ENDFB6 To ENDL by doxygen 1.3.4