G4AblaVirtualData.cc

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 // $Id$ 
00027 // Translation of INCL4.2/ABLA V3 
00028 // Pekka Kaitaniemi, HIP (translation)
00029 // Christelle Schmidt, IPNL (fission code)
00030 // Alain Boudard, CEA (contact person INCL/ABLA)
00031 // Aatos Heikkinen, HIP (project coordination)
00032 
00033 #include "G4AblaVirtualData.hh"
00034 
00035 G4AblaVirtualData::G4AblaVirtualData()
00036 {
00037         
00038 }
00039 
00040 bool G4AblaVirtualData::setAlpha(int A, int Z, double value)
00041 {
00042   alpha[A][Z] = value;
00043 
00044   return true;
00045 }
00046 
00047 bool G4AblaVirtualData::setEcnz(int A, int Z, double value)
00048 {
00049   ecnz[A][Z] = value;
00050 
00051   return true;
00052 }
00053 
00054 bool G4AblaVirtualData::setVgsld(int A, int Z, double value)
00055 {
00056   vgsld[A][Z] = value;
00057 
00058   return true;
00059 }
00060 
00061 bool G4AblaVirtualData::setPace2(int A, int Z, double value)
00062 {
00063   pace2[A][Z] = value;
00064 
00065   return true;
00066 }
00067 
00068 double G4AblaVirtualData::getAlpha(int A, int Z)
00069 {
00070   return alpha[A][Z];
00071 }
00072 
00073 double G4AblaVirtualData::getEcnz(int A, int Z)
00074 {
00075   return ecnz[A][Z];
00076 }
00077 
00078 double G4AblaVirtualData::getVgsld(int A, int Z)
00079 {
00080   return vgsld[A][Z];
00081 }
00082 
00083 double G4AblaVirtualData::getPace2(int A, int Z)
00084 {
00085   return pace2[A][Z];
00086 }
00087 
00088 int G4AblaVirtualData::getAlphaRows()
00089 {
00090   return alphaRows;
00091 }
00092 
00093 int G4AblaVirtualData::getAlphaCols()
00094 {
00095   return alphaCols;
00096 }
00097 int G4AblaVirtualData::getPaceRows()
00098 {
00099   return paceRows;
00100 }
00101 int G4AblaVirtualData::getPaceCols()
00102 {
00103   return paceCols;
00104 }

Generated on Mon May 27 17:47:36 2013 for Geant4 by  doxygen 1.4.7