Files
geant4/source/parameterisations/include/G4PAIclusterModel.hh
T
2016-06-08 15:55:53 +02:00

59 lines
1.3 KiB
C++

// This code implementation is the intellectual property of
// the RD44 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: G4PAIclusterModel.hh,v 1.1 2000/11/14 16:06:00 gcosmo Exp $
// GEANT4 tag $Name: geant4-03-00 $
//
//
///////////////////////////////////////////////////////////////////////////
//
// Class for 'fast' parametrisation model describing PAI ionisation clusters
// created in some G4Envelope.
//
// History:
// 14.07.00 V. Grichine first version
//
#ifndef G4PAIclusterModel_h
#define G4PAIclusterModel_h 1
#include "globals.hh"
#include "templates.hh"
#include "G4PAIonisation.hh"
#include "G4VClusterModel.hh"
#include "G4Step.hh"
#include "G4VTouchable.hh"
#include "G4TouchableHistory.hh"
#include <g4rw/tvordvec.h>
class G4PAIclusterModel : public G4VClusterModel
{
public:
G4PAIclusterModel (G4LogicalVolume* anEnvelope);
~G4PAIclusterModel ();
// Pure virtual functions from base class
G4bool IsApplicable(const G4ParticleDefinition&);
G4bool ModelTrigger(const G4FastTrack &);
void DoIt(const G4FastTrack&, G4FastStep&) ;
private:
G4PAIonisation* fPAIonisation ;
};
#endif