91 lines
2.0 KiB
C++
91 lines
2.0 KiB
C++
// 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: G4PiMinusStopAl.hh,v 1.3 1999/12/15 14:53:36 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-03-00 $
|
|
//
|
|
// -------------------------------------------------------------------
|
|
// GEANT 4 class file --- Copyright CERN 1998
|
|
// CERN Geneva Switzerland
|
|
//
|
|
// For information related to this code contact:
|
|
// CERN, IT Division, ASD group
|
|
//
|
|
// File name: G4PiMinusStopAl.hh
|
|
//
|
|
// Author: Maria Grazia Pia (pia@genova.infn.it)
|
|
//
|
|
// Creation date: 18 May 1998
|
|
//
|
|
// Modifications:
|
|
// -------------------------------------------------------------------
|
|
|
|
#ifndef G4PIMINUSSTOPAL_HH
|
|
#define G4PIMINUSSTOPAL_HH
|
|
|
|
#include "g4rw/tpordvec.h"
|
|
#include "g4rw/tvordvec.h"
|
|
#include "g4rw/cstring.h"
|
|
|
|
#include "G4PiMinusStopMaterial.hh"
|
|
#include "globals.hh"
|
|
#include "G4LorentzVector.hh"
|
|
|
|
class G4PiMinusStopAl : public G4PiMinusStopMaterial
|
|
{
|
|
|
|
private:
|
|
|
|
// Hide assignment operator as private
|
|
G4PiMinusStopAl& operator=(const G4PiMinusStopAl &right);
|
|
|
|
// Copy constructor
|
|
G4PiMinusStopAl(const G4PiMinusStopAl& );
|
|
|
|
public:
|
|
|
|
// Constructor
|
|
G4PiMinusStopAl();
|
|
|
|
// Destructor
|
|
virtual ~G4PiMinusStopAl();
|
|
|
|
// Definitions of absorption products
|
|
// virtual G4RWTValOrderedVector<G4String>* DefinitionVector();
|
|
|
|
// 4-vectors of absorption products
|
|
// virtual G4RWTPtrOrderedVector<G4LorentzVector>* P4Vector();
|
|
|
|
// 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
|
|
|
|
|