141 lines
4.0 KiB
C++
141 lines
4.0 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. *
|
|
// ********************************************************************
|
|
//
|
|
|
|
#include <CLHEP/Units/SystemOfUnits.h>
|
|
|
|
using CLHEP::millimeter;
|
|
using CLHEP::millimeter2;
|
|
using CLHEP::millimeter3;
|
|
using CLHEP::centimeter;
|
|
using CLHEP::centimeter2;
|
|
using CLHEP::centimeter3;
|
|
using CLHEP::meter;
|
|
using CLHEP::meter2;
|
|
using CLHEP::meter3;
|
|
using CLHEP::kilometer;
|
|
using CLHEP::kilometer2;
|
|
using CLHEP::kilometer3;
|
|
using CLHEP::parsec;
|
|
using CLHEP::micrometer;
|
|
using CLHEP::nanometer;
|
|
using CLHEP::angstrom;
|
|
using CLHEP::fermi;
|
|
using CLHEP::barn;
|
|
using CLHEP::millibarn;
|
|
using CLHEP::microbarn;
|
|
using CLHEP::nanobarn;
|
|
using CLHEP::picobarn;
|
|
using CLHEP::mm;
|
|
using CLHEP::um;
|
|
using CLHEP::nm;
|
|
using CLHEP::mm2;
|
|
using CLHEP::mm3;
|
|
using CLHEP::cm;
|
|
using CLHEP::cm2;
|
|
using CLHEP::cm3;
|
|
using CLHEP::m;
|
|
using CLHEP::m2;
|
|
using CLHEP::m3;
|
|
using CLHEP::km;
|
|
using CLHEP::km2;
|
|
using CLHEP::km3;
|
|
using CLHEP::pc;
|
|
using CLHEP::radian;
|
|
using CLHEP::milliradian;
|
|
using CLHEP::degree;
|
|
using CLHEP::steradian;
|
|
using CLHEP::rad;
|
|
using CLHEP::mrad;
|
|
using CLHEP::sr;
|
|
using CLHEP::deg;
|
|
using CLHEP::nanosecond;
|
|
using CLHEP::second;
|
|
using CLHEP::millisecond;
|
|
using CLHEP::microsecond;
|
|
using CLHEP::picosecond;
|
|
using CLHEP::hertz;
|
|
using CLHEP::kilohertz;
|
|
using CLHEP::megahertz;
|
|
using CLHEP::ns;
|
|
using CLHEP::s;
|
|
using CLHEP::ms;
|
|
using CLHEP::eplus;
|
|
using CLHEP::e_SI;
|
|
using CLHEP::coulomb;
|
|
using CLHEP::megaelectronvolt;
|
|
using CLHEP::electronvolt;
|
|
using CLHEP::kiloelectronvolt;
|
|
using CLHEP::gigaelectronvolt;
|
|
using CLHEP::teraelectronvolt;
|
|
using CLHEP::petaelectronvolt;
|
|
using CLHEP::joule;
|
|
using CLHEP::MeV;
|
|
using CLHEP::eV;
|
|
using CLHEP::keV;
|
|
using CLHEP::GeV;
|
|
using CLHEP::TeV;
|
|
using CLHEP::PeV;
|
|
using CLHEP::kilogram;
|
|
using CLHEP::gram;
|
|
using CLHEP::milligram;
|
|
using CLHEP::kg;
|
|
using CLHEP::g;
|
|
using CLHEP::mg;
|
|
using CLHEP::watt;
|
|
using CLHEP::newton;
|
|
using CLHEP::hep_pascal;
|
|
using CLHEP::bar;
|
|
using CLHEP::atmosphere;
|
|
using CLHEP::ampere;
|
|
using CLHEP::milliampere;
|
|
using CLHEP::microampere;
|
|
using CLHEP::nanoampere;
|
|
using CLHEP::megavolt;
|
|
using CLHEP::kilovolt;
|
|
using CLHEP::volt;
|
|
using CLHEP::ohm;
|
|
using CLHEP::farad;
|
|
using CLHEP::millifarad;
|
|
using CLHEP::microfarad;
|
|
using CLHEP::nanofarad;
|
|
using CLHEP::picofarad;
|
|
using CLHEP::weber;
|
|
using CLHEP::tesla;
|
|
using CLHEP::gauss;
|
|
using CLHEP::kilogauss;
|
|
using CLHEP::henry;
|
|
using CLHEP::kelvin;
|
|
using CLHEP::mole;
|
|
using CLHEP::becquerel;
|
|
using CLHEP::curie;
|
|
using CLHEP::gray;
|
|
using CLHEP::candela;
|
|
using CLHEP::lumen;
|
|
using CLHEP::lux;
|
|
using CLHEP::perCent;
|
|
using CLHEP::perThousand;
|
|
using CLHEP::perMillion;
|