New Physics List. New LEMuSRMuoniumParticle
This commit is contained in:
parent
e1575c4794
commit
61f6d25b0d
@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
#include "G4UserSteppingAction.hh"
|
#include "G4UserSteppingAction.hh"
|
||||||
#include "globals.hh"
|
#include "globals.hh"
|
||||||
#include <fstream.h>
|
#include <fstream>
|
||||||
#include "LEMuSRVisManager.hh"
|
#include "LEMuSRVisManager.hh"
|
||||||
#include "LEMuSRDetectorConstruction.hh"
|
#include "LEMuSRDetectorConstruction.hh"
|
||||||
#include "G4RunManager.hh"
|
#include "G4RunManager.hh"
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
#include "G4UserSteppingAction.hh"
|
#include "G4UserSteppingAction.hh"
|
||||||
#include "globals.hh"
|
#include "globals.hh"
|
||||||
#include <fstream.h>
|
#include <fstream>
|
||||||
#include "LEMuSRVisManager.hh"
|
#include "LEMuSRVisManager.hh"
|
||||||
#include "LEMuSRDetectorConstruction.hh"
|
#include "LEMuSRDetectorConstruction.hh"
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
#include "globals.hh"
|
#include "globals.hh"
|
||||||
#include "G4ios.hh"
|
#include "G4ios.hh"
|
||||||
|
|
||||||
#include <iomanip.h>
|
#include <iomanip>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
#include "globals.hh"
|
#include "globals.hh"
|
||||||
#include "G4ios.hh"
|
#include "G4ios.hh"
|
||||||
|
|
||||||
#include <iomanip.h>
|
#include <iomanip>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
#include "globals.hh"
|
#include "globals.hh"
|
||||||
#include "G4ios.hh"
|
#include "G4ios.hh"
|
||||||
|
|
||||||
#include <iomanip.h>
|
#include <iomanip>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
69
geant4/LEMuSR/include/LEMuSRMuoniumParticle.hh
Normal file
69
geant4/LEMuSR/include/LEMuSRMuoniumParticle.hh
Normal 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
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,64 +1,64 @@
|
|||||||
//$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$//*
|
|
||||||
// LOW ENERGY MUON SPIN RELAXATION, ROTATION, RADIATION
|
|
||||||
//
|
//
|
||||||
// ID : LEMuSRPhysicsList.hh , v 1.1
|
// ********************************************************************
|
||||||
// AUTHOR: Taofiq PARAISO
|
// * DISCLAIMER *
|
||||||
// DATE : 2004-08-24 16:33
|
// * *
|
||||||
//$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$//
|
// * 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
|
#ifndef LEMuSRPhysicsList_h
|
||||||
#define LEMuSRPhysicsList_h 1
|
#define LEMuSRPhysicsList_h 1
|
||||||
|
|
||||||
#include "G4VModularPhysicsList.hh"
|
#include "G4VUserPhysicsList.hh"
|
||||||
#include "globals.hh"
|
#include "globals.hh"
|
||||||
|
|
||||||
/*!
|
class LEMuSRPhysicsList: public G4VUserPhysicsList
|
||||||
* 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
|
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
//! Constructor.
|
|
||||||
LEMuSRPhysicsList();
|
LEMuSRPhysicsList();
|
||||||
//!\dt
|
~LEMuSRPhysicsList();
|
||||||
virtual ~LEMuSRPhysicsList();
|
|
||||||
|
|
||||||
public:
|
protected:
|
||||||
//! Cuts.
|
// Construct particle and physics
|
||||||
virtual void SetCuts();
|
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
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
|
|
||||||
#include "G4UserSteppingAction.hh"
|
#include "G4UserSteppingAction.hh"
|
||||||
#include "globals.hh"
|
#include "globals.hh"
|
||||||
#include <fstream.h>
|
#include <fstream>
|
||||||
#include "LEMuSRVisManager.hh"
|
#include "LEMuSRVisManager.hh"
|
||||||
#include "LEMuSRDetectorConstruction.hh"
|
#include "LEMuSRDetectorConstruction.hh"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user