source: trunk/examples/extended/exoticphysics/monopole/src/G4MonopolePhysics.cc @ 807

Last change on this file since 807 was 807, checked in by garnier, 16 years ago

update

File size: 3.5 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26//
27// $Id: G4MonopolePhysics.cc,v 1.1 2007/08/16 10:32:04 vnivanch Exp $
28// GEANT4 tag $Name:  $
29//
30//---------------------------------------------------------------------------
31//
32// ClassName:   G4MonopolePhysics
33//
34// Author:      V.Ivanchenko 13.03.2005
35//
36// Modified:
37//
38//----------------------------------------------------------------------------
39//
40//
41//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
42//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
43
44#include "G4Monopole.hh"
45#include "G4MonopolePhysics.hh"
46#include "G4ParticleDefinition.hh"
47#include "G4ProcessManager.hh"
48
49#include "G4StepLimiter.hh"
50#include "G4Transportation.hh"
51#include "G4MultipleScattering.hh"
52#include "G4mplIonisation.hh"
53#include "G4hhIonisation.hh"
54
55//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
56
57G4MonopolePhysics::G4MonopolePhysics(const G4String& name):  G4VPhysicsConstructor(name)
58{}
59
60G4MonopolePhysics::~G4MonopolePhysics()
61{}
62
63void G4MonopolePhysics::ConstructParticle()
64{
65  G4Monopole::MonopoleDefinition(); 
66}
67
68
69//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
70void G4MonopolePhysics::ConstructProcess()
71{
72
73  // Add standard EM Processes for gamma
74  G4cout << "G4MonopolePhysics::ConstructProcess" << G4endl;
75
76  G4Monopole* mpl = G4Monopole::MonopoleDefinition();
77 
78  G4ProcessManager* pmanager = new G4ProcessManager(mpl);
79  mpl->SetProcessManager(pmanager);
80 
81  pmanager->AddProcess( new G4Transportation(), -1, 0, 0);
82  pmanager->AddProcess( new G4mplIonisation(mpl->MagneticCharge()), -1, 1, 1);
83  pmanager->AddProcess( new G4StepLimiter(),  -1, -1, 3);
84  if(mpl->GetPDGCharge() != 0.0) {
85    pmanager->AddProcess(new G4hhIonisation(),  -1, 2, 2);
86  }
87
88}
89
90//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
91
Note: See TracBrowser for help on using the repository browser.