// // ******************************************************************** // * 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: G4PiMinusStopPb.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: G4PiMinusStopPb.hh // // Author: Maria Grazia Pia (pia@genova.infn.it) // // Creation date: 18 May 1998 // // Modifications: // ------------------------------------------------------------------- #ifndef G4PIMINUSSTOPPB_HH #define G4PIMINUSSTOPPB_HH #include "G4PiMinusStopMaterial.hh" #include "globals.hh" #include "G4LorentzVector.hh" class G4PiMinusStopPb : public G4PiMinusStopMaterial { private: // Hide assignment operator as private G4PiMinusStopPb& operator=(const G4PiMinusStopPb &right); // Copy constructor G4PiMinusStopPb(const G4PiMinusStopPb& ); public: // Constructor G4PiMinusStopPb(); // Destructor virtual ~G4PiMinusStopPb(); // 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[10]; static G4double eKin[11]; static G4double angleData[7]; static G4double angle[8]; G4double _clusterSize; }; #endif