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

@ -26,7 +26,7 @@
#include "G4UserSteppingAction.hh"
#include "globals.hh"
#include <fstream.h>
#include <fstream>
#include "LEMuSRVisManager.hh"
#include "LEMuSRDetectorConstruction.hh"
#include "G4RunManager.hh"

View File

@ -24,7 +24,7 @@
#include "G4UserSteppingAction.hh"
#include "globals.hh"
#include <fstream.h>
#include <fstream>
#include "LEMuSRVisManager.hh"
#include "LEMuSRDetectorConstruction.hh"

View File

@ -28,7 +28,7 @@
#include "globals.hh"
#include "G4ios.hh"
#include <iomanip.h>
#include <iomanip>
#include <iostream>
#include <fstream>
#include <vector>

View File

@ -29,7 +29,7 @@
#include "globals.hh"
#include "G4ios.hh"
#include <iomanip.h>
#include <iomanip>
#include <iostream>
#include <fstream>
#include <vector>

View File

@ -29,7 +29,7 @@
#include "globals.hh"
#include "G4ios.hh"
#include <iomanip.h>
#include <iomanip>
#include <iostream>
#include <fstream>
#include <vector>

View File

@ -0,0 +1,69 @@
//
// ********************************************************************
// * 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: LEMuSRMuoniumParticle.hh,v 1.9 2005/01/14 03:49:17 asaim Exp $
// GEANT4 tag $Name: geant4-08-00-patch-01 $
//
//
// ------------------------------------------------------------
// GEANT 4 class header file
//
// History: first implementation, based on object model of
// 4-th April 1996, G.Cosmo
// ****************************************************************
// New implementation as a utility class M.Asai, 26 July 2004
// ----------------------------------------------------------------
#ifndef LEMuSRMuoniumParticle_h
#define LEMuSRMuoniumParticle_h 1
#include "globals.hh"
#include "G4ios.hh"
#include "G4ParticleDefinition.hh"
// ######################################################################
// ### MUONIUM ###
// ######################################################################
class LEMuSRMuoniumParticle : public G4ParticleDefinition
{
private:
static LEMuSRMuoniumParticle* theInstance;
LEMuSRMuoniumParticle(){}
~LEMuSRMuoniumParticle(){}
public:
static LEMuSRMuoniumParticle* Definition();
static LEMuSRMuoniumParticle* MuoniumDefinition();
static LEMuSRMuoniumParticle* Muonium();
};
#endif

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

View File

@ -28,7 +28,7 @@
#include "G4UserSteppingAction.hh"
#include "globals.hh"
#include <fstream.h>
#include <fstream>
#include "LEMuSRVisManager.hh"
#include "LEMuSRDetectorConstruction.hh"