BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
ExN04GeneralPhysics.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * DISCLAIMER *
4// * *
5// * The following disclaimer summarizes all the specific disclaimers *
6// * of contributors to this software. The specific disclaimers,which *
7// * govern, are listed with their locations in: *
8// * http://cern.ch/geant4/license *
9// * *
10// * Neither the authors of this software system, nor their employing *
11// * institutes,nor the agencies providing financial support for this *
12// * work make any representation or warranty, express or implied, *
13// * regarding this software system or assume any liability for its *
14// * use. *
15// * *
16// * This code implementation is the intellectual property of the *
17// * GEANT4 collaboration. *
18// * By copying, distributing or modifying the Program (or any work *
19// * based on the Program) you indicate your acceptance of this *
20// * statement, and all its terms. *
21// ********************************************************************
22//
23//
24// $Id: ExN04GeneralPhysics.hh,v 1.1.1.1 2004/09/28 05:16:53 liwd Exp $
25// GEANT4 tag $Name: G4Svc-00-01-58 $
26//
27//
28// ------------------------------------------------------------
29// GEANT 4 class header file
30// Class Description:
31// This class is an derived class of G4VPhysicsConstructor
32//
33// -------------------------------------------
34// History
35// first version 12 Nov. 2000 by H.Kurashige
36// ------------------------------------------------------------
37#ifndef ExN04GeneralPhysics_h
38#define ExN04GeneralPhysics_h 1
39
40#include "G4ios.hh"
41#include "globals.hh"
42
43#include "G4VPhysicsConstructor.hh"
44
45#include "G4Decay.hh"
46
47class ExN04GeneralPhysics : public G4VPhysicsConstructor {
48public:
49 ExN04GeneralPhysics( const G4String& name = "general" );
50 virtual ~ExN04GeneralPhysics();
51
52public:
53 // This method will be invoked in the Construct() method.
54 // each particle type will be instantiated
55 virtual void ConstructParticle();
56
57 // This method will be invoked in the Construct() method.
58 // each physics process will be instantiated and
59 // registered to the process manager of each particle type
60 virtual void ConstructProcess();
61
62protected:
64};
65
66#endif
virtual void ConstructProcess()
ExN04GeneralPhysics(const G4String &name="general")
virtual void ConstructParticle()