BOSS 7.1.2
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-56 $
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 "globals.hh"
41#include "G4ios.hh"
42
43#include "G4VPhysicsConstructor.hh"
44
45
46#include "G4Decay.hh"
47
48class ExN04GeneralPhysics : public G4VPhysicsConstructor
49{
50 public:
51 ExN04GeneralPhysics(const G4String& name = "general");
52 virtual ~ExN04GeneralPhysics();
53
54 public:
55 // This method will be invoked in the Construct() method.
56 // each particle type will be instantiated
57 virtual void ConstructParticle();
58
59 // This method will be invoked in the Construct() method.
60 // each physics process will be instantiated and
61 // registered to the process manager of each particle type
62 virtual void ConstructProcess();
63
64 protected:
66};
67
68
69#endif
70
71
72
73
74
75
76
77
virtual void ConstructProcess()
ExN04GeneralPhysics(const G4String &name="general")
virtual void ConstructParticle()