// // ******************************************************************** // * DISCLAIMER * // * * // * The following disclaimer summarizes all the specific disclaimers * // * of contributors to this software. The specific disclaimers,which * // * govern, are listed with their locations in: * // * http://cern.ch/geant4/license * // * * // * 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. * // * * // * This code implementation is the intellectual property of the * // * GEANT4 collaboration. * // * By copying, distributing or modifying the Program (or any work * // * based on the Program) you indicate your acceptance of this * // * statement, and all its terms. * // ******************************************************************** // // // $Id: G4PiMinusStopLi.hh,v 1.8 2002/12/12 19:18:37 gunter Exp $ // GEANT4 tag $Name: geant4-05-00 $ // // ------------------------------------------------------------------- // GEANT 4 class file --- Copyright CERN 1998 // CERN Geneva Switzerland // // // File name: G4PiMinusStopLi.hh // // Author: Maria Grazia Pia (pia@genova.infn.it) // // Creation date: 18 May 1998 // // Modifications: // ------------------------------------------------------------------- #ifndef G4PIMINUSSTOPLI_HH #define G4PIMINUSSTOPLI_HH #include "G4PiMinusStopMaterial.hh" #include "globals.hh" #include "G4LorentzVector.hh" class G4PiMinusStopLi : public G4PiMinusStopMaterial { private: // Hide assignment operator as private G4PiMinusStopLi& operator=(const G4PiMinusStopLi &right); // Copy constructor G4PiMinusStopLi(const G4PiMinusStopLi& ); public: // Constructor G4PiMinusStopLi(); // Destructor virtual ~G4PiMinusStopLi(); // Number of final nucleons, out of generated absorption products virtual G4double FinalNucleons(); private: static G4int eKinEntries; static G4int angleEntries; static G4double npRatio; static G4double nFinalNucleons; static G4double eMaxTot; static G4double eKinData[21]; static G4double eKin[22]; static G4double angleData[7]; static G4double angle[8]; G4double _clusterSize; }; #endif