123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- /***************************************************************************
- *
- * Description: This file is based on the SystemOfUnits provided
- * in the CLHEP library v1.2: The units remain the same.
- * It is just the naming conventions that are different:
- *
- * 1) No single letter unit:
- * : m --> meter
- * : s --> second
- * : g --> gram
- *
- * 2) All prefixes are spelled out explicitly (except electron Volt):
- * : ns --> nanosecond
- * : mm --> millimeter
- *
- * 3) All units with proper names follow the international standard
- * of being lower case:
- * : farad --> farad
- * : volt --> volt
- *
- * The basic units are :
- * centimeter (centimeter)
- * second (second)
- * Giga electron Volt (GeV)
- * positron charge (eplus)
- * degree Kelvin (kelvin)
- * the amount of substance (mole)
- * radian (radian)
- * steradian (steradian)
- ***************************************************************************/
- // #ifdef _VANILLA_ROOT_
- #ifndef HEP_SYSTEM_OF_UNITS_H
- #define HEP_SYSTEM_OF_UNITS_H
- // C++ headers
- #include <math.h>
- namespace units {
- // new macro for CLHEP SystemOfUnits: at end of file
- // ST_ADD_OLD_CLHEP_SYSTEM_OF_UNITS
- //
- // Length [L]
- //
- static const double millimeter = 0.1;
- static const double millimeter2 = millimeter*millimeter;
- static const double millimeter3 = millimeter*millimeter*millimeter;
- static const double centimeter = 10 * millimeter;
- static const double centimeter2 = centimeter*centimeter;
- static const double centimeter3 = centimeter*centimeter*centimeter;
- static const double meter = 100. * centimeter;
- static const double meter2 = meter*meter;
- static const double meter3 = meter*meter*meter;
- static const double kilometer = 1000. * meter;
- static const double kilometer2 = kilometer*kilometer;
- static const double kilometer3 = kilometer*kilometer*kilometer;
- static const double micrometer = 1.e-6 * meter;
- static const double nanometer = 1.e-9 * meter;
- static const double femtometer = 1.e-15 * meter;
- static const double fermi = 1 * femtometer;
- static const double barn = 1.e-28 * meter2;
- static const double millibarn = 1.e-3 * barn;
- static const double microbarn = 1.e-6 * barn;
- static const double nanobarn = 1.e-9 * barn;
- static const double inch = 2.54 * centimeter;
- //
- // Angle
- //
- static const double radian = 1.;
- static const double milliradian = 1.e-3 * radian;
- #ifndef __CINT__
- static const double degree = (M_PI / 180.0) * radian;
- #endif
- static const double steradian = 1.;
- //
- // Time [T]
- //
- static const double second = 1;
- static const double millisecond = 1.e-3 * second;
- static const double microsecond = 1.e-3 * millisecond;
- static const double nanosecond = 1.e-3 * microsecond;
- static const double hertz = 1. / second;
- static const double kilohertz = 1.e+3 * hertz;
- static const double Megahertz = 1.e+6 * hertz;
- // but these are also unambiguous and unlikely to be used as variable!
- static const double Hz = 1 * hertz;
- static const double kHz = 1 * kilohertz;
- static const double MHz = 1 * Megahertz;
- //
- // Electric charge [Q]
- //
- static const double eplus = 1.; // positron charge
- static const double e_SI = 1.60217733e-19; // positron charge in coulomb
- static const double coulomb = eplus / e_SI;
- //
- // Energy [E]
- //
- static const double Gigaelectronvolt = 1.;
- static const double Megaelectronvolt = 1.e-3 * Gigaelectronvolt;
- static const double electronvolt = 1.e-6 * Megaelectronvolt;
- static const double kiloelectronvolt = 1.e+3 * electronvolt;
- static const double Teraelectronvolt = 1.e+3 * Gigaelectronvolt;
- // but these are also unambiguous and unlikely to be used as variables
- static const double MeV = Megaelectronvolt;
- static const double eV = electronvolt;
- static const double keV = kiloelectronvolt;
- static const double GeV = Gigaelectronvolt;
- static const double TeV = Teraelectronvolt;
- static const double amu = 931.49406121 * MeV; // unified Atomic mass unit
- static const double joule = electronvolt / e_SI;
- //
- // Mass [E][T^2][L^-2]
- //
- static const double kilogram = joule*second*second / (meter*meter);
- static const double gram = 1.e-3 * kilogram;
- static const double milligram = 1.e-3 * gram;
- //
- // Power [E][T^-1]
- //
- static const double watt = joule / second;
- //
- // Force [E][L^-1]
- //
- static const double newton = joule / meter;
- //
- // Pressure [E][L^-3]
- //
- #ifndef __CINT__
- #define pascal hep_pascal // a trick to avoid warnings
- static const double hep_pascal = newton / meter2;
- #else
- static const double pascal = newton / meter2;
- #endif
- static const double bar = 100000 * pascal;
- static const double atmosphere = 101325 * pascal;
- //
- // Electric current [Q][T^-1]
- //
- static const double ampere = coulomb / second;
- //
- // Electric potential [E][Q^-1]
- //
- static const double Megavolt = MeV / eplus;
- static const double kilovolt = 1.e-3 * Megavolt;
- static const double volt = 1.e-6 * Megavolt;
- static const double millivolt = 1.e-3 * volt;
- //
- // Electric resistance [E][T][Q^-2]
- //
- static const double ohm = volt / ampere;
- //
- // Electric capacitance [Q^2][E^-1]
- //
- static const double farad = coulomb / volt;
- static const double millifarad = 1.e-3 * farad;
- static const double microfarad = 1.e-6 * farad;
- static const double nanofarad = 1.e-9 * farad;
- static const double picofarad = 1.e-12 * farad;
- //
- // Magnetic Flux [T][E][Q^-1]
- //
- static const double weber = volt*second;
- //
- // Magnetic Field [T][E][Q^-1][L^-2]
- //
- static const double tesla = volt*second / meter2;
- static const double gauss = 1.e-4 * tesla;
- static const double kilogauss = 1.e-1 * tesla;
- //
- // Inductance [T^2][E][Q^-2]
- //
- static const double henry = weber / ampere;
- //
- // Temperature
- //
- static const double kelvin = 1.;
- //
- // Amount of substance
- //
- static const double mole = 1.;
- //
- // Activity [T^-1]
- //
- static const double becquerel = 1. / second;
- static const double curie = 3.7e+10 * becquerel;
- //
- // Absorbed dose [L^2][T^-2]
- //
- static const double gray = joule / kilogram;
- //
- // Miscellaneous
- //
- static const double perCent = 0.01;
- static const double perThousand = 0.001;
- static const double perMillion = 0.000001;
- #ifdef ST_ADD_OLD_CLHEP_SYSTEM_OF_UNITS
- static const double mm = 0.1; // millimeter
- static const double mm2 = mm*mm;
- static const double mm3 = mm*mm*mm;
- static const double cm = 10. * mm; // centimeter
- static const double cm2 = cm*cm;
- static const double cm3 = cm*cm*cm;
- static const double m = 1000. * mm; // meter
- static const double m2 = m*m;
- static const double m3 = m*m*m;
- static const double km = 1000. * m; // kilometer
- static const double km2 = km*km;
- static const double km3 = km*km*km;
- static const double microm = 1.e-6 * m; // micro meter
- static const double nanom = 1.e-9 * m;
- //static const double fermi = 1.e-15*m;
- //
- // Angle
- //
- static const double rad = 1.; // radian
- static const double mrad = 1.e-3 * rad; // milliradian
- static const double deg = (M_PI / 180.0) * rad;
- static const double st = 1.; // steradian
- //
- // Time [T]
- //
- static const double s = 1; // second
- static const double ns = 1.e-9 * s; // nano second
- static const double ms = 1.e-3 * s; // milli second
- // Mass [E][T^2][L^-2]
- //
- static const double kg = joule*second*second / (meter*meter); // kg = 6.24150 e+24 * MeV*ns*ns/(mm*mm)
- static const double g = 1.e-3 * kg;
- static const double mg = 1.e-3 * g;
- #endif
- }
- using namespace units;
- #endif /* HEP_SYSTEM_OF_UNITS_H */
- // #endif //#ifdef _VANILLA_ROOT_
|