Files
geant4/source/particles/management/include/G4ElectronOccupancy.hh
T
2016-06-10 12:08:39 +02:00

149 lines
4.7 KiB
C++

//
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * 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. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
// $Id: G4ElectronOccupancy.hh 79357 2014-02-25 10:06:54Z gcosmo $
//
//
// ------------------------------------------------------------
// GEANT 4 class header file
//
// History: first implementation, based on object model of
// Hisaya Kurashige, 17 Aug 1999
// ----------------------------------------------------------------
// Class Description
// This class has information of occupation of electrons
// in atomic orbits
// -
// GetOccupancy(N) gives the number of electron
// in N-th orbit
// For example : Carbon atom should be
// GetOccupancy(0) --> 2
// GetOccupancy(1) --> 4
// GetOccupancy(2..7) --> 0
// -
// GetTotalOccupancy() gives the total number of electrons
//
// ---------------------------------------------------------------
#ifndef G4ElectronOccupancy_h
#define G4ElectronOccupancy_h 1
#include "globals.hh"
#include "G4Allocator.hh"
#include "G4ios.hh"
#include "pwdefs.hh"
class G4ElectronOccupancy
{
public:
enum { MaxSizeOfOrbit = 20};
public: // With Description
G4ElectronOccupancy( G4int sizeOrbit = MaxSizeOfOrbit );
G4ElectronOccupancy( const G4ElectronOccupancy& right );
public:
virtual ~G4ElectronOccupancy();
// new/delete operators are oberloded to use G4Allocator
inline void *operator new(size_t);
inline void operator delete(void *aElectronOccupancy);
//- operators
G4ElectronOccupancy & operator=(const G4ElectronOccupancy &right);
G4int operator==(const G4ElectronOccupancy &right) const;
G4int operator!=(const G4ElectronOccupancy &right) const;
public: // With Description
// The following methods returns
// 0: if the orbit(atom) is vacant
// >0: number of electrons in orbit
G4int GetTotalOccupancy() const;
G4int GetOccupancy(G4int orbit) const;
//
G4int AddElectron(G4int orbit, G4int number = 1);
G4int RemoveElectron(G4int orbit, G4int number = 1);
G4int GetSizeOfOrbit() const;
void DumpInfo() const;
private:
G4int theSizeOfOrbit;
G4int theTotalOccupancy;
G4int* theOccupancies;
};
extern G4PART_DLL G4ThreadLocal G4Allocator<G4ElectronOccupancy> *aElectronOccupancyAllocator;
// ------------------------
// Inlined operators
// ------------------------
inline void * G4ElectronOccupancy::operator new(size_t)
{
if (!aElectronOccupancyAllocator)
{
aElectronOccupancyAllocator = new G4Allocator<G4ElectronOccupancy>;
}
return (void *) aElectronOccupancyAllocator->MallocSingle();
}
inline void G4ElectronOccupancy::operator delete(void * aElectronOccupancy)
{
aElectronOccupancyAllocator->FreeSingle((G4ElectronOccupancy *) aElectronOccupancy);
}
inline
G4int G4ElectronOccupancy::GetSizeOfOrbit() const
{
return theSizeOfOrbit;
}
inline
G4int G4ElectronOccupancy::GetTotalOccupancy() const
{
return theTotalOccupancy;
}
inline
G4int G4ElectronOccupancy::GetOccupancy(G4int orbit) const
{
G4int value = 0;
if ((orbit >=0)&&(orbit<theSizeOfOrbit)){
value = theOccupancies[orbit];
}
return value;
}
#endif