System of units


HepSystemOfUnits

GEANT4 offers the user the possibility to choose and use the units he prefers for any quantity. In fact the Geant4 kernel takes care of the units. Internaly it uses a consistent set on units based on:

                millimeter              (mm)
                nanosecond              (ns)
                Mega electron Volt      (MeV)
                positron charge         (eplus)
                degree Kelvin           (kelvin)
                the amount of substance (mole)
                luminous intensity      (candela)
                radian                  (radian)
                steradian               (steradian)

All the others units are defined from the basic ones.
In the file: source/global/management/include/SystemOfUnits.h you will find all these definitions. That file is part of CLHEP.

      G4UnitDefinition::PrintUnitsTable();
      Idle> /units/list

Input your data

Avoid 'hard coded' data

You must give the unit of the data you are going to introduce:

G4double Size = 15*km, KineticEnergy = 90.3*GeV, density = 11*mg/cm3;

If the unit is not specified, it is understood that the data is implicitely in the internal G4 system, but this is discouraged.

If the data set comes from an array or from an external file, it is strongly recommanded to set the unit as soon as the data are read, before any treatement. For instance, immediatly after to have read a file of cross sections expressed in millibarn:

  for (int j=0, j<jmax, j++) CrossSection[j] *= millibarn;
  ........................................................
  ......  my calculations .................................


interactive commands

Some built-in commands from the User Interface (UI) also require the unit.

For instance:

    /gun/energy 15.2 keV
    /gun/position 3 2 -7 meter

If the unit is not specified or not valid the command is refused.


Output your data


Introduce new units

you may wish introduce new units.


Change the internal system of units

The user is free to change the system of units to be used internally by the G4 kernel.
To do so, one must redefine the basic units in SystemOfUnits.h and recompile the full Geant4 kernel, since the units are heavily used elsewhere (especially in the phycics sector).
Indeed the full Geant4 code is written respecting the above conventions and this makes it independent of the units chosen by the user.
The file source/global/management/include/G4UnitsTest.hh is an example of redefinition of the units: International System of units.
example of a shower profile


more examples can be found in source/global/management/test/G4UnitsTableTest.cc


back