New Physics List. New LEMuSRMuoniumParticle

This commit is contained in:
paraiso
2006-02-25 16:25:58 +00:00
parent e1575c4794
commit 61f6d25b0d
8 changed files with 122 additions and 53 deletions

View File

@ -1,64 +1,64 @@
//$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$//*
// LOW ENERGY MUON SPIN RELAXATION, ROTATION, RADIATION
//
// ID : LEMuSRPhysicsList.hh , v 1.1
// AUTHOR: Taofiq PARAISO
// DATE : 2004-08-24 16:33
//$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$//
// ********************************************************************
// * DISCLAIMER *
// * *
// * The following disclaimer summarizes all the specific disclaimers *
// * of contributors to this software. The specific disclaimers,which *
// * govern, are listed with their locations in: *
// * http://cern.ch/geant4/license *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. *
// * *
// * 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$
// GEANT4 tag $Name: geant4-08-00-patch-01 $
//
// & &&&&&&&&&& &&&&&&& &&&&&&&&
// & & && && & &&
// & & & & & & &&
// & &&&&&&& & & &&&&&& &&&&&&&&
// & & & && & & &&
// & & && & & && && & &
// &&&&&&&&&& &&&&&&&&&& & &&&&& && &&&&&&& & &&
// &
// &
// &
// &
// PHYSICS LIST
//$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$//
#ifndef LEMuSRPhysicsList_h
#define LEMuSRPhysicsList_h 1
#include "G4VModularPhysicsList.hh"
#include "G4VUserPhysicsList.hh"
#include "globals.hh"
/*!
* The physics list class is the mandatory class which registers all the particles
* and processes taken into account by the simulation.
* As their number is quite high, the physics list has been organized in a
* modular way, meaning its effective implementation is shared in different files.
* Hence, the LEMuSRPhysicsList class registers the different physics lists from the
* following files:
* - LEMuSREMPhysics
* - LEMuSRMuonPhysics
* - LEMuSRIonPhysics
* - LEMuSRHadronPhysics
* - LEMuSRGeneralPhysics
* .
* cf. @ref physicsref
*/
class LEMuSRPhysicsList: public G4VModularPhysicsList
class LEMuSRPhysicsList: public G4VUserPhysicsList
{
public:
//! Constructor.
LEMuSRPhysicsList();
//!\dt
virtual ~LEMuSRPhysicsList();
public:
//! Cuts.
virtual void SetCuts();
public:
LEMuSRPhysicsList();
~LEMuSRPhysicsList();
protected:
// Construct particle and physics
void ConstructParticle();
void ConstructProcess();
void SetCuts();
protected:
// these methods Construct particles
void ConstructBosons();
void ConstructLeptons();
void ConstructMesons();
void ConstructBaryons();
protected:
// these methods Construct physics processes and register them
void ConstructGeneral();
void ConstructEM();
};
#endif