This commit was manufactured by cvs2svn to create branch
'CLHEP_2_000_branch'.
Showing
with
225956 additions
and
0 deletions
+225956
-0
- .cvsignore .cvsignore +7 -0
- ChangeLog ChangeLog +3655 -0
- Evaluator/.cvsignore Evaluator/.cvsignore +5 -0
- Evaluator/Evaluator-deps.in Evaluator/Evaluator-deps.in +1 -0
- Evaluator/Evaluator/.cvsignore Evaluator/Evaluator/.cvsignore +2 -0
- Evaluator/Evaluator/Evaluator.h Evaluator/Evaluator/Evaluator.h +258 -0
- Evaluator/Evaluator/Makefile.am Evaluator/Evaluator/Makefile.am +10 -0
- Evaluator/INSTALL Evaluator/INSTALL +61 -0
- Evaluator/Makefile.am Evaluator/Makefile.am +58 -0
- Evaluator/autotools/.cvsignore Evaluator/autotools/.cvsignore +6 -0
- Evaluator/autotools/ltmain.sh Evaluator/autotools/ltmain.sh +6290 -0
- Evaluator/bootstrap Evaluator/bootstrap +10 -0
- Evaluator/configure.in Evaluator/configure.in +209 -0
- Evaluator/src/.cvsignore Evaluator/src/.cvsignore +1 -0
- Evaluator/src/Evaluator.cc Evaluator/src/Evaluator.cc +725 -0
- Evaluator/src/Makefile.am Evaluator/src/Makefile.am +10 -0
- Evaluator/src/hash_map.src Evaluator/src/hash_map.src +203 -0
- Evaluator/src/setStdMath.cc Evaluator/src/setStdMath.cc +67 -0
- Evaluator/src/setSystemOfUnits.cc Evaluator/src/setSystemOfUnits.cc +396 -0
- Evaluator/src/stack.src Evaluator/src/stack.src +45 -0
- Evaluator/src/string.src Evaluator/src/string.src +125 -0
- Evaluator/test/.cvsignore Evaluator/test/.cvsignore +1 -0
- Evaluator/test/Makefile.am Evaluator/test/Makefile.am +27 -0
- Evaluator/test/testEvaluator.cc Evaluator/test/testEvaluator.cc +55 -0
- Evaluator/test/testEvaluator.input Evaluator/test/testEvaluator.input +29 -0
- Evaluator/test/testEvaluator.output Evaluator/test/testEvaluator.output +47 -0
- Evaluator/test/testEvaluator.sh.in Evaluator/test/testEvaluator.sh.in +6 -0
- GenericFunctions/.cvsignore GenericFunctions/.cvsignore +5 -0
- GenericFunctions/GenericFunctions-deps.in GenericFunctions/GenericFunctions-deps.in +1 -0
- GenericFunctions/GenericFunctions/.cvsignore GenericFunctions/GenericFunctions/.cvsignore +2 -0
- GenericFunctions/GenericFunctions/ACos.hh GenericFunctions/GenericFunctions/ACos.hh +49 -0
- GenericFunctions/GenericFunctions/ASin.hh GenericFunctions/GenericFunctions/ASin.hh +47 -0
- GenericFunctions/GenericFunctions/ATan.hh GenericFunctions/GenericFunctions/ATan.hh +47 -0
- GenericFunctions/GenericFunctions/Abs.hh GenericFunctions/GenericFunctions/Abs.hh +42 -0
- GenericFunctions/GenericFunctions/AbsFunction.hh GenericFunctions/GenericFunctions/AbsFunction.hh +187 -0
- GenericFunctions/GenericFunctions/AbsFunctional.hh GenericFunctions/GenericFunctions/AbsFunctional.hh +32 -0
- GenericFunctions/GenericFunctions/AbsParameter.hh GenericFunctions/GenericFunctions/AbsParameter.hh +105 -0
- GenericFunctions/GenericFunctions/AnalyticConvolution.hh GenericFunctions/GenericFunctions/AnalyticConvolution.hh +87 -0
- GenericFunctions/GenericFunctions/Argument.hh GenericFunctions/GenericFunctions/Argument.hh +87 -0
- GenericFunctions/GenericFunctions/ArgumentList.hh GenericFunctions/GenericFunctions/ArgumentList.hh +9 -0
- GenericFunctions/GenericFunctions/ArrayFunction.hh GenericFunctions/GenericFunctions/ArrayFunction.hh +41 -0
- GenericFunctions/GenericFunctions/AssociatedLaguerre.hh GenericFunctions/GenericFunctions/AssociatedLaguerre.hh +73 -0
- GenericFunctions/GenericFunctions/AssociatedLegendre.hh GenericFunctions/GenericFunctions/AssociatedLegendre.hh +69 -0
- GenericFunctions/GenericFunctions/Bessel.hh GenericFunctions/GenericFunctions/Bessel.hh +120 -0
- GenericFunctions/GenericFunctions/Bessel.icc GenericFunctions/GenericFunctions/Bessel.icc +113 -0
- GenericFunctions/GenericFunctions/BivariateGaussian.hh GenericFunctions/GenericFunctions/BivariateGaussian.hh +78 -0
- GenericFunctions/GenericFunctions/ConstMinusFunction.hh GenericFunctions/GenericFunctions/ConstMinusFunction.hh +57 -0
- GenericFunctions/GenericFunctions/ConstMinusParameter.hh GenericFunctions/GenericFunctions/ConstMinusParameter.hh +47 -0
- GenericFunctions/GenericFunctions/ConstOverFunction.hh GenericFunctions/GenericFunctions/ConstOverFunction.hh +60 -0
- GenericFunctions/GenericFunctions/ConstOverParameter.hh GenericFunctions/GenericFunctions/ConstOverParameter.hh +47 -0
- GenericFunctions/GenericFunctions/ConstPlusFunction.hh GenericFunctions/GenericFunctions/ConstPlusFunction.hh +57 -0
- GenericFunctions/GenericFunctions/ConstPlusParameter.hh GenericFunctions/GenericFunctions/ConstPlusParameter.hh +47 -0
- GenericFunctions/GenericFunctions/ConstTimesFunction.hh GenericFunctions/GenericFunctions/ConstTimesFunction.hh +56 -0
- GenericFunctions/GenericFunctions/ConstTimesParameter.hh GenericFunctions/GenericFunctions/ConstTimesParameter.hh +47 -0
- GenericFunctions/GenericFunctions/Cos.hh GenericFunctions/GenericFunctions/Cos.hh +51 -0
- GenericFunctions/GenericFunctions/CumulativeChiSquare.hh GenericFunctions/GenericFunctions/CumulativeChiSquare.hh +58 -0
- GenericFunctions/GenericFunctions/CutBase.hh GenericFunctions/GenericFunctions/CutBase.hh +167 -0
- GenericFunctions/GenericFunctions/CutBase.icc GenericFunctions/GenericFunctions/CutBase.icc +189 -0
- GenericFunctions/GenericFunctions/DefiniteIntegral.hh GenericFunctions/GenericFunctions/DefiniteIntegral.hh +53 -0
- GenericFunctions/GenericFunctions/DoubleParamToArgAdaptor.hh GenericFunctions/GenericFunctions/DoubleParamToArgAdaptor.hh +92 -0
- GenericFunctions/GenericFunctions/DoubleParamToArgAdaptor.icc ...ricFunctions/GenericFunctions/DoubleParamToArgAdaptor.icc +119 -0
- GenericFunctions/GenericFunctions/EllipticIntegral.hh GenericFunctions/GenericFunctions/EllipticIntegral.hh +122 -0
- GenericFunctions/GenericFunctions/EllipticIntegral.icc GenericFunctions/GenericFunctions/EllipticIntegral.icc +140 -0
- GenericFunctions/GenericFunctions/Erf.hh GenericFunctions/GenericFunctions/Erf.hh +54 -0
- GenericFunctions/GenericFunctions/Exp.hh GenericFunctions/GenericFunctions/Exp.hh +52 -0
- GenericFunctions/GenericFunctions/Exponential.hh GenericFunctions/GenericFunctions/Exponential.hh +59 -0
- GenericFunctions/GenericFunctions/FixedConstant.hh GenericFunctions/GenericFunctions/FixedConstant.hh +57 -0
- GenericFunctions/GenericFunctions/FloatingConstant.hh GenericFunctions/GenericFunctions/FloatingConstant.hh +61 -0
- GenericFunctions/GenericFunctions/FunctionComposition.hh GenericFunctions/GenericFunctions/FunctionComposition.hh +57 -0
- GenericFunctions/GenericFunctions/FunctionConvolution.hh GenericFunctions/GenericFunctions/FunctionConvolution.hh +57 -0
- GenericFunctions/GenericFunctions/FunctionDifference.hh GenericFunctions/GenericFunctions/FunctionDifference.hh +58 -0
- GenericFunctions/GenericFunctions/FunctionDirectProduct.hh GenericFunctions/GenericFunctions/FunctionDirectProduct.hh +63 -0
- GenericFunctions/GenericFunctions/FunctionNegation.hh GenericFunctions/GenericFunctions/FunctionNegation.hh +56 -0
- GenericFunctions/GenericFunctions/FunctionNoop.hh GenericFunctions/GenericFunctions/FunctionNoop.hh +56 -0
- GenericFunctions/GenericFunctions/FunctionNumDeriv.hh GenericFunctions/GenericFunctions/FunctionNumDeriv.hh +59 -0
- GenericFunctions/GenericFunctions/FunctionPlusParameter.hh GenericFunctions/GenericFunctions/FunctionPlusParameter.hh +58 -0
- GenericFunctions/GenericFunctions/FunctionProduct.hh GenericFunctions/GenericFunctions/FunctionProduct.hh +57 -0
- GenericFunctions/GenericFunctions/FunctionQuotient.hh GenericFunctions/GenericFunctions/FunctionQuotient.hh +56 -0
- GenericFunctions/GenericFunctions/FunctionSum.hh GenericFunctions/GenericFunctions/FunctionSum.hh +57 -0
- GenericFunctions/GenericFunctions/FunctionTimesParameter.hh GenericFunctions/GenericFunctions/FunctionTimesParameter.hh +58 -0
- GenericFunctions/GenericFunctions/Gaussian.hh GenericFunctions/GenericFunctions/Gaussian.hh +67 -0
- GenericFunctions/GenericFunctions/GenericFunctions.hh GenericFunctions/GenericFunctions/GenericFunctions.hh +14 -0
- GenericFunctions/GenericFunctions/IncompleteGamma.hh GenericFunctions/GenericFunctions/IncompleteGamma.hh +65 -0
- GenericFunctions/GenericFunctions/Landau.hh GenericFunctions/GenericFunctions/Landau.hh +65 -0
- GenericFunctions/GenericFunctions/LikelihoodFunctional.hh GenericFunctions/GenericFunctions/LikelihoodFunctional.hh +39 -0
- GenericFunctions/GenericFunctions/Ln.hh GenericFunctions/GenericFunctions/Ln.hh +52 -0
- GenericFunctions/GenericFunctions/LogGamma.hh GenericFunctions/GenericFunctions/LogGamma.hh +51 -0
- GenericFunctions/GenericFunctions/LogisticFunction.hh GenericFunctions/GenericFunctions/LogisticFunction.hh +66 -0
- GenericFunctions/GenericFunctions/Makefile.am GenericFunctions/GenericFunctions/Makefile.am +96 -0
- GenericFunctions/GenericFunctions/Mod.hh GenericFunctions/GenericFunctions/Mod.hh +48 -0
- GenericFunctions/GenericFunctions/ParamToArgAdaptor.hh GenericFunctions/GenericFunctions/ParamToArgAdaptor.hh +83 -0
- GenericFunctions/GenericFunctions/ParamToArgAdaptor.icc GenericFunctions/GenericFunctions/ParamToArgAdaptor.icc +100 -0
- GenericFunctions/GenericFunctions/Parameter.hh GenericFunctions/GenericFunctions/Parameter.hh +96 -0
- GenericFunctions/GenericFunctions/ParameterDifference.hh GenericFunctions/GenericFunctions/ParameterDifference.hh +47 -0
- GenericFunctions/GenericFunctions/ParameterNegation.hh GenericFunctions/GenericFunctions/ParameterNegation.hh +48 -0
- GenericFunctions/GenericFunctions/ParameterProduct.hh GenericFunctions/GenericFunctions/ParameterProduct.hh +47 -0
- GenericFunctions/GenericFunctions/ParameterQuotient.hh GenericFunctions/GenericFunctions/ParameterQuotient.hh +46 -0
- GenericFunctions/GenericFunctions/ParameterSum.hh GenericFunctions/GenericFunctions/ParameterSum.hh +47 -0
- GenericFunctions/GenericFunctions/PeriodicRectangular.hh GenericFunctions/GenericFunctions/PeriodicRectangular.hh +66 -0
- GenericFunctions/GenericFunctions/Power.hh GenericFunctions/GenericFunctions/Power.hh +58 -0
- GenericFunctions/GenericFunctions/Psi2Hydrogen.hh GenericFunctions/GenericFunctions/Psi2Hydrogen.hh +72 -0
- GenericFunctions/GenericFunctions/PtRelFcn.hh GenericFunctions/GenericFunctions/PtRelFcn.hh +82 -0
- GenericFunctions/GenericFunctions/PuncturedSmearedExp.hh GenericFunctions/GenericFunctions/PuncturedSmearedExp.hh +74 -0
- GenericFunctions/GenericFunctions/RCBase.hh GenericFunctions/GenericFunctions/RCBase.hh +55 -0
- GenericFunctions/GenericFunctions/RKIntegrator.hh GenericFunctions/GenericFunctions/RKIntegrator.hh +176 -0
- GenericFunctions/GenericFunctions/Rectangular.hh GenericFunctions/GenericFunctions/Rectangular.hh +73 -0
- GenericFunctions/GenericFunctions/ReverseExponential.hh GenericFunctions/GenericFunctions/ReverseExponential.hh +59 -0
- GenericFunctions/GenericFunctions/Sigma.hh GenericFunctions/GenericFunctions/Sigma.hh +59 -0
- GenericFunctions/GenericFunctions/Sin.hh GenericFunctions/GenericFunctions/Sin.hh +52 -0
- GenericFunctions/GenericFunctions/SphericalBessel.hh GenericFunctions/GenericFunctions/SphericalBessel.hh +58 -0
- GenericFunctions/GenericFunctions/SphericalBessel.icc GenericFunctions/GenericFunctions/SphericalBessel.icc +71 -0
- GenericFunctions/GenericFunctions/SphericalNeumann.hh GenericFunctions/GenericFunctions/SphericalNeumann.hh +58 -0
- GenericFunctions/GenericFunctions/SphericalNeumann.icc GenericFunctions/GenericFunctions/SphericalNeumann.icc +71 -0
- GenericFunctions/GenericFunctions/Sqrt.hh GenericFunctions/GenericFunctions/Sqrt.hh +53 -0
- GenericFunctions/GenericFunctions/Square.hh GenericFunctions/GenericFunctions/Square.hh +51 -0
- GenericFunctions/GenericFunctions/Tan.hh GenericFunctions/GenericFunctions/Tan.hh +52 -0
- GenericFunctions/GenericFunctions/TrivariateGaussian.hh GenericFunctions/GenericFunctions/TrivariateGaussian.hh +90 -0
- GenericFunctions/GenericFunctions/Variable.hh GenericFunctions/GenericFunctions/Variable.hh +66 -0
- GenericFunctions/GenericFunctions/X.hh GenericFunctions/GenericFunctions/X.hh +45 -0
- GenericFunctions/INSTALL GenericFunctions/INSTALL +61 -0
- GenericFunctions/Makefile.am GenericFunctions/Makefile.am +60 -0
- GenericFunctions/autotools/.cvsignore GenericFunctions/autotools/.cvsignore +6 -0
- GenericFunctions/autotools/ltmain.sh GenericFunctions/autotools/ltmain.sh +6290 -0
- GenericFunctions/bootstrap GenericFunctions/bootstrap +10 -0
- GenericFunctions/configure.in GenericFunctions/configure.in +210 -0
- GenericFunctions/doc/.cvsignore GenericFunctions/doc/.cvsignore +1 -0
- GenericFunctions/doc/Makefile.am GenericFunctions/doc/Makefile.am +35 -0
- GenericFunctions/doc/PartiallyClosed.ps GenericFunctions/doc/PartiallyClosed.ps +355 -0
- GenericFunctions/doc/TotallyClosed.ps GenericFunctions/doc/TotallyClosed.ps +348 -0
- GenericFunctions/doc/WideOpen.ps GenericFunctions/doc/WideOpen.ps +365 -0
- GenericFunctions/doc/example.ps GenericFunctions/doc/example.ps +384 -0
- GenericFunctions/doc/genericFunctions.tex GenericFunctions/doc/genericFunctions.tex +846 -0
- GenericFunctions/doc/hydrogen.ps GenericFunctions/doc/hydrogen.ps +824 -0
- GenericFunctions/src/.cvsignore GenericFunctions/src/.cvsignore +1 -0
- GenericFunctions/src/ACos.cc GenericFunctions/src/ACos.cc +39 -0
- GenericFunctions/src/ASin.cc GenericFunctions/src/ASin.cc +38 -0
- GenericFunctions/src/ATan.cc GenericFunctions/src/ATan.cc +36 -0
- GenericFunctions/src/Abs.cc GenericFunctions/src/Abs.cc +26 -0
- GenericFunctions/src/AbsFunction.cc GenericFunctions/src/AbsFunction.cc +154 -0
- GenericFunctions/src/AbsFunctional.cc GenericFunctions/src/AbsFunctional.cc +13 -0
- GenericFunctions/src/AbsParameter.cc GenericFunctions/src/AbsParameter.cc +74 -0
- GenericFunctions/src/AnalyticConvolution.cc GenericFunctions/src/AnalyticConvolution.cc +238 -0
- GenericFunctions/src/ArrayFunction.cc GenericFunctions/src/ArrayFunction.cc +27 -0
- GenericFunctions/src/AssociatedLaguerre.cc GenericFunctions/src/AssociatedLaguerre.cc +60 -0
- GenericFunctions/src/AssociatedLegendre.cc GenericFunctions/src/AssociatedLegendre.cc +62 -0
- GenericFunctions/src/BivariateGaussian.cc GenericFunctions/src/BivariateGaussian.cc +110 -0
- GenericFunctions/src/ConstMinusFunction.cc GenericFunctions/src/ConstMinusFunction.cc +49 -0
- GenericFunctions/src/ConstMinusParameter.cc GenericFunctions/src/ConstMinusParameter.cc +35 -0
- GenericFunctions/src/ConstOverFunction.cc GenericFunctions/src/ConstOverFunction.cc +49 -0
- GenericFunctions/src/ConstOverParameter.cc GenericFunctions/src/ConstOverParameter.cc +32 -0
- GenericFunctions/src/ConstPlusFunction.cc GenericFunctions/src/ConstPlusFunction.cc +47 -0
- GenericFunctions/src/ConstPlusParameter.cc GenericFunctions/src/ConstPlusParameter.cc +32 -0
- GenericFunctions/src/ConstTimesFunction.cc GenericFunctions/src/ConstTimesFunction.cc +47 -0
- GenericFunctions/src/ConstTimesParameter.cc GenericFunctions/src/ConstTimesParameter.cc +33 -0
- GenericFunctions/src/Cos.cc GenericFunctions/src/Cos.cc +31 -0
- GenericFunctions/src/CumulativeChiSquare.cc GenericFunctions/src/CumulativeChiSquare.cc +47 -0
- GenericFunctions/src/Exp.cc GenericFunctions/src/Exp.cc +30 -0
- GenericFunctions/src/Exponential.cc GenericFunctions/src/Exponential.cc +43 -0
- GenericFunctions/src/FixedConstant.cc GenericFunctions/src/FixedConstant.cc +33 -0
- GenericFunctions/src/FloatingConstant.cc GenericFunctions/src/FloatingConstant.cc +37 -0
- GenericFunctions/src/FunctionComposition.cc GenericFunctions/src/FunctionComposition.cc +68 -0
- GenericFunctions/src/FunctionConvolution.cc GenericFunctions/src/FunctionConvolution.cc +46 -0
- GenericFunctions/src/FunctionDifference.cc GenericFunctions/src/FunctionDifference.cc +59 -0
- GenericFunctions/src/FunctionDirectProduct.cc GenericFunctions/src/FunctionDirectProduct.cc +81 -0
- GenericFunctions/src/FunctionNegation.cc GenericFunctions/src/FunctionNegation.cc +46 -0
- GenericFunctions/src/FunctionNoop.cc GenericFunctions/src/FunctionNoop.cc +46 -0
- GenericFunctions/src/FunctionNumDeriv.cc GenericFunctions/src/FunctionNumDeriv.cc +176 -0
- GenericFunctions/src/FunctionPlusParameter.cc GenericFunctions/src/FunctionPlusParameter.cc +49 -0
- GenericFunctions/src/FunctionProduct.cc GenericFunctions/src/FunctionProduct.cc +54 -0
- GenericFunctions/src/FunctionQuotient.cc GenericFunctions/src/FunctionQuotient.cc +54 -0
- GenericFunctions/src/FunctionSum.cc GenericFunctions/src/FunctionSum.cc +58 -0
- GenericFunctions/src/FunctionTimesParameter.cc GenericFunctions/src/FunctionTimesParameter.cc +53 -0
- GenericFunctions/src/Gaussian.cc GenericFunctions/src/Gaussian.cc +60 -0
- GenericFunctions/src/IncompleteGamma.cc GenericFunctions/src/IncompleteGamma.cc +91 -0
- GenericFunctions/src/Landau.cc GenericFunctions/src/Landau.cc +137 -0
- GenericFunctions/src/LikelihoodFunctional.cc GenericFunctions/src/LikelihoodFunctional.cc +30 -0
- GenericFunctions/src/Ln.cc GenericFunctions/src/Ln.cc +35 -0
- GenericFunctions/src/LogGamma.cc GenericFunctions/src/LogGamma.cc +35 -0
- GenericFunctions/src/LogisticFunction.cc GenericFunctions/src/LogisticFunction.cc +75 -0
- GenericFunctions/src/Makefile.am GenericFunctions/src/Makefile.am +77 -0
- GenericFunctions/src/Mod.cc GenericFunctions/src/Mod.cc +30 -0
- GenericFunctions/src/Parameter.cc GenericFunctions/src/Parameter.cc +125 -0
- GenericFunctions/src/ParameterDifference.cc GenericFunctions/src/ParameterDifference.cc +34 -0
- GenericFunctions/src/ParameterNegation.cc GenericFunctions/src/ParameterNegation.cc +30 -0
- GenericFunctions/src/ParameterProduct.cc GenericFunctions/src/ParameterProduct.cc +34 -0
- GenericFunctions/src/ParameterQuotient.cc GenericFunctions/src/ParameterQuotient.cc +34 -0
- GenericFunctions/src/ParameterSum.cc GenericFunctions/src/ParameterSum.cc +34 -0
- GenericFunctions/src/PeriodicRectangular.cc GenericFunctions/src/PeriodicRectangular.cc +59 -0
- GenericFunctions/src/Power.cc GenericFunctions/src/Power.cc +74 -0
- GenericFunctions/src/Psi2Hydrogen.cc GenericFunctions/src/Psi2Hydrogen.cc +87 -0
- GenericFunctions/src/PtRelFcn.cc GenericFunctions/src/PtRelFcn.cc +117 -0
- GenericFunctions/src/PuncturedSmearedExp.cc GenericFunctions/src/PuncturedSmearedExp.cc +157 -0
- GenericFunctions/src/RCBase.cc GenericFunctions/src/RCBase.cc +39 -0
- GenericFunctions/src/RKIntegrator.cc GenericFunctions/src/RKIntegrator.cc +367 -0
- GenericFunctions/src/Rectangular.cc GenericFunctions/src/Rectangular.cc +79 -0
- GenericFunctions/src/ReverseExponential.cc GenericFunctions/src/ReverseExponential.cc +39 -0
- GenericFunctions/src/Sigma.cc GenericFunctions/src/Sigma.cc +63 -0
- GenericFunctions/src/Sin.cc GenericFunctions/src/Sin.cc +33 -0
- GenericFunctions/src/Sqrt.cc GenericFunctions/src/Sqrt.cc +30 -0
- GenericFunctions/src/Square.cc GenericFunctions/src/Square.cc +34 -0
- GenericFunctions/src/Tan.cc GenericFunctions/src/Tan.cc +35 -0
- GenericFunctions/src/TrivariateGaussian.cc GenericFunctions/src/TrivariateGaussian.cc +173 -0
- GenericFunctions/src/Variable.cc GenericFunctions/src/Variable.cc +48 -0
- GenericFunctions/src/X.cc GenericFunctions/src/X.cc +22 -0
- GenericFunctions/test/.cvsignore GenericFunctions/test/.cvsignore +1 -0
- GenericFunctions/test/Makefile.am GenericFunctions/test/Makefile.am +27 -0
- GenericFunctions/test/testGenericFunctions.cc GenericFunctions/test/testGenericFunctions.cc +50 -0
- GenericFunctions/test/testGenericFunctions.output GenericFunctions/test/testGenericFunctions.output +1 -0
- GenericFunctions/test/testGenericFunctions.sh.in GenericFunctions/test/testGenericFunctions.sh.in +6 -0
- Geometry/.cvsignore Geometry/.cvsignore +5 -0
- Geometry/Geometry-deps.in Geometry/Geometry-deps.in +2 -0
- Geometry/Geometry/.cvsignore Geometry/Geometry/.cvsignore +2 -0
- Geometry/Geometry/BasicVector3D.h Geometry/Geometry/BasicVector3D.h +559 -0
- Geometry/Geometry/Makefile.am Geometry/Geometry/Makefile.am +16 -0
- Geometry/Geometry/Normal3D.h Geometry/Geometry/Normal3D.h +190 -0
- Geometry/Geometry/Plane3D.h Geometry/Geometry/Plane3D.h +162 -0
- Geometry/Geometry/Point3D.h Geometry/Geometry/Point3D.h +232 -0
- Geometry/Geometry/Transform3D.h Geometry/Geometry/Transform3D.h +835 -0
- Geometry/Geometry/Transform3D.icc Geometry/Geometry/Transform3D.icc +87 -0
- Geometry/Geometry/Vector3D.h Geometry/Geometry/Vector3D.h +190 -0
- Geometry/INSTALL Geometry/INSTALL +61 -0
- Geometry/Makefile.am Geometry/Makefile.am +58 -0
- Geometry/autotools/.cvsignore Geometry/autotools/.cvsignore +6 -0
- Geometry/autotools/ltmain.sh Geometry/autotools/ltmain.sh +6290 -0
- Geometry/bootstrap Geometry/bootstrap +10 -0
- Geometry/configure.in Geometry/configure.in +210 -0
- Geometry/src/.cvsignore Geometry/src/.cvsignore +1 -0
- Geometry/src/BasicVector3D.cc Geometry/src/BasicVector3D.cc +323 -0
- Geometry/src/Makefile.am Geometry/src/Makefile.am +13 -0
- Geometry/src/Normal3D.cc Geometry/src/Normal3D.cc +61 -0
- Geometry/src/Plane3D.cc Geometry/src/Plane3D.cc +34 -0
- Geometry/src/Point3D.cc Geometry/src/Point3D.cc +49 -0
- Geometry/src/Transform3D.cc Geometry/src/Transform3D.cc +304 -0
- Geometry/src/Vector3D.cc Geometry/src/Vector3D.cc +49 -0
- Geometry/test/.cvsignore Geometry/test/.cvsignore +1 -0
- Geometry/test/Makefile.am Geometry/test/Makefile.am +29 -0
- Geometry/test/testBasicVector3D.input Geometry/test/testBasicVector3D.input +7 -0
- Geometry/test/testBasicVector3D.output Geometry/test/testBasicVector3D.output +6 -0
- Geometry/test/testTransform3D.cc Geometry/test/testTransform3D.cc +180 -0
- HepMC/.cvsignore HepMC/.cvsignore +5 -0
- HepMC/HepMC-deps.in HepMC/HepMC-deps.in +4 -0
- HepMC/HepMC/.cvsignore HepMC/HepMC/.cvsignore +2 -0
- HepMC/HepMC/CBInterface.h HepMC/HepMC/CBInterface.h +37 -0
- HepMC/HepMC/CBhepevt.h HepMC/HepMC/CBhepevt.h +107 -0
- HepMC/HepMC/CBhepevt.icc HepMC/HepMC/CBhepevt.icc +308 -0
- HepMC/HepMC/CBherwig.h HepMC/HepMC/CBherwig.h +128 -0
- HepMC/HepMC/CBherwig.icc HepMC/HepMC/CBherwig.icc +1039 -0
- HepMC/HepMC/ConvertHEPEVT.h HepMC/HepMC/ConvertHEPEVT.h +30 -0
- HepMC/HepMC/ConvertHerwig.h HepMC/HepMC/ConvertHerwig.h +30 -0
- HepMC/HepMC/DummyDecayModel.h HepMC/HepMC/DummyDecayModel.h +72 -0
- HepMC/HepMC/Flow.h HepMC/HepMC/Flow.h +172 -0
- HepMC/HepMC/GenEvent.h HepMC/HepMC/GenEvent.h +486 -0
- HepMC/HepMC/GenEventConvert.h HepMC/HepMC/GenEventConvert.h +64 -0
- HepMC/HepMC/GenEventConvert.icc HepMC/HepMC/GenEventConvert.icc +85 -0
- HepMC/HepMC/GenEventtoHEPEVT.icc HepMC/HepMC/GenEventtoHEPEVT.icc +123 -0
- HepMC/HepMC/GenParticle.h HepMC/HepMC/GenParticle.h +258 -0
- HepMC/HepMC/GenVertex.h HepMC/HepMC/GenVertex.h +442 -0
- HepMC/HepMC/HEPEVTtoGenEvent.icc HepMC/HepMC/HEPEVTtoGenEvent.icc +237 -0
- HepMC/HepMC/HepMCConfig.h HepMC/HepMC/HepMCConfig.h +57 -0
- HepMC/HepMC/Makefile.am HepMC/HepMC/Makefile.am +33 -0
- HepMC/HepMC/ParticleDataTableConfig.h HepMC/HepMC/ParticleDataTableConfig.h +23 -0
- HepMC/HepMC/Polarization.h HepMC/HepMC/Polarization.h +83 -0
- HepMC/HepMC/ReadHepMC.h HepMC/HepMC/ReadHepMC.h +46 -0
- HepMC/HepMC/WeightContainer.h HepMC/HepMC/WeightContainer.h +146 -0
- HepMC/HepMC/WriteHepMC.h HepMC/HepMC/WriteHepMC.h +36 -0
- HepMC/HepMC/include/.cvsignore HepMC/HepMC/include/.cvsignore +1 -0
- HepMC/HepMC/include/HerwigWrapper.h HepMC/HepMC/include/HerwigWrapper.h +21 -0
- HepMC/HepMC/include/HerwigWrapper6_4.h HepMC/HepMC/include/HerwigWrapper6_4.h +128 -0
- HepMC/HepMC/include/Makefile.am HepMC/HepMC/include/Makefile.am +19 -0
- HepMC/HepMC/include/PythiaWrapper.h HepMC/HepMC/include/PythiaWrapper.h +19 -0
- HepMC/HepMC/include/PythiaWrapper5_720.h HepMC/HepMC/include/PythiaWrapper5_720.h +186 -0
- HepMC/HepMC/include/PythiaWrapper6_152.h HepMC/HepMC/include/PythiaWrapper6_152.h +146 -0
- HepMC/HepMC/include/PythiaWrapper6_152_WIN32.h HepMC/HepMC/include/PythiaWrapper6_152_WIN32.h +165 -0
- HepMC/HepMC/include/PythiaWrapper6_2.h HepMC/HepMC/include/PythiaWrapper6_2.h +150 -0
- HepMC/HepMC/include/PythiaWrapper6_2_WIN32.h HepMC/HepMC/include/PythiaWrapper6_2_WIN32.h +169 -0
- HepMC/HepMC/include/hepev4.h HepMC/HepMC/include/hepev4.h +21 -0
- HepMC/HepMC/include/hepev4.inc HepMC/HepMC/include/hepev4.inc +53 -0
- HepMC/HepMC/include/stdhep.h HepMC/HepMC/include/stdhep.h +46 -0
- HepMC/HepMC/include/stdhep.inc HepMC/HepMC/include/stdhep.inc +46 -0
- HepMC/INSTALL HepMC/INSTALL +61 -0
- HepMC/Makefile.am HepMC/Makefile.am +60 -0
- HepMC/autotools/.cvsignore HepMC/autotools/.cvsignore +6 -0
- HepMC/autotools/ltmain.sh HepMC/autotools/ltmain.sh +6290 -0
- HepMC/bootstrap HepMC/bootstrap +10 -0
- HepMC/configure.in HepMC/configure.in +232 -0
- HepMC/doc/.cvsignore HepMC/doc/.cvsignore +1 -0
- HepMC/doc/ChangeLog HepMC/doc/ChangeLog +816 -0
- HepMC/doc/Makefile.am HepMC/doc/Makefile.am +35 -0
- HepMC/doc/README HepMC/doc/README +57 -0
- HepMC/doc/latex_user_manual/HepMC_UML.eps HepMC/doc/latex_user_manual/HepMC_UML.eps +10483 -0
- HepMC/doc/latex_user_manual/HepMC_user_manual-1.20.tex HepMC/doc/latex_user_manual/HepMC_user_manual-1.20.tex +1088 -0
- HepMC/doc/latex_user_manual/HepMC_user_manual.tex HepMC/doc/latex_user_manual/HepMC_user_manual.tex +1019 -0
- HepMC/doc/latex_user_manual/graph_interpretation.eps HepMC/doc/latex_user_manual/graph_interpretation.eps +152 -0
- HepMC/doc/latex_user_manual/html.sty HepMC/doc/latex_user_manual/html.sty +1085 -0
- HepMC/doc/latex_user_manual/physicist_visualization.eps HepMC/doc/latex_user_manual/physicist_visualization.eps +288 -0
- HepMC/examples/.cvsignore HepMC/examples/.cvsignore +6 -0
- HepMC/examples/GNUmakefile HepMC/examples/GNUmakefile +245 -0
- HepMC/examples/IO_Ascii.cc HepMC/examples/IO_Ascii.cc +447 -0
- HepMC/examples/IO_Ascii.h HepMC/examples/IO_Ascii.h +175 -0
- HepMC/examples/RunAllExamples.job HepMC/examples/RunAllExamples.job +28 -0
- HepMC/examples/examplePythiaWriteHepMC.cc HepMC/examples/examplePythiaWriteHepMC.cc +94 -0
- HepMC/examples/exampleReadHepMC.cc HepMC/examples/exampleReadHepMC.cc +60 -0
- HepMC/examples/example_EventSelection.cc HepMC/examples/example_EventSelection.cc +71 -0
- HepMC/examples/example_MyHerwig.cc HepMC/examples/example_MyHerwig.cc +89 -0
- HepMC/examples/example_MyPythia.cc HepMC/examples/example_MyPythia.cc +78 -0
- HepMC/examples/example_MyPythiaOnlyToHepMC.cc HepMC/examples/example_MyPythiaOnlyToHepMC.cc +100 -0
- HepMC/examples/example_MyPythiaWithEventSelection.cc HepMC/examples/example_MyPythiaWithEventSelection.cc +102 -0
- HepMC/examples/example_UsingIterators.cc HepMC/examples/example_UsingIterators.cc +156 -0
- HepMC/examples/initpydata.F HepMC/examples/initpydata.F +14 -0
- HepMC/examples/testMethods.cc HepMC/examples/testMethods.cc +110 -0
- HepMC/examples/test_MakeUsingIteratorsInput.cc HepMC/examples/test_MakeUsingIteratorsInput.cc +88 -0
- HepMC/include/.cvsignore HepMC/include/.cvsignore +1 -0
- HepMC/src/.cvsignore HepMC/src/.cvsignore +1 -0
- HepMC/src/DummyDecayModel.cc HepMC/src/DummyDecayModel.cc +46 -0
- HepMC/src/Flow.cc HepMC/src/Flow.cc +207 -0
- HepMC/src/GenEvent.cc HepMC/src/GenEvent.cc +363 -0
- HepMC/src/GenParticle.cc HepMC/src/GenParticle.cc +217 -0
- HepMC/src/GenVertex.cc HepMC/src/GenVertex.cc +816 -0
- HepMC/src/Makefile.am HepMC/src/Makefile.am +43 -0
- HepMC/src/Polarization.cc HepMC/src/Polarization.cc +94 -0
- HepMC/src/ReadHepMC.cc HepMC/src/ReadHepMC.cc +44 -0
- HepMC/src/ReadHepMCBlockType.cc HepMC/src/ReadHepMCBlockType.cc +43 -0
- HepMC/src/ReadHepMCComment.cc HepMC/src/ReadHepMCComment.cc +33 -0
- HepMC/src/ReadHepMCDetail.cc HepMC/src/ReadHepMCDetail.cc +217 -0
- HepMC/src/ReadHepMCFindBlock.cc HepMC/src/ReadHepMCFindBlock.cc +38 -0
- HepMC/src/ReadNextHepMC.cc HepMC/src/ReadNextHepMC.cc +37 -0
- HepMC/src/WriteHepMC.cc HepMC/src/WriteHepMC.cc +90 -0
- HepMC/src/WriteHepMCDetail.cc HepMC/src/WriteHepMCDetail.cc +96 -0
- HepMC/src/genMass.cc HepMC/src/genMass.cc +17 -0
- HepMC/src/getParticleID.cc HepMC/src/getParticleID.cc +18 -0
- HepMC/src/particleCollision.cc HepMC/src/particleCollision.cc +22 -0
- HepMC/src/particleCreationVertex.cc HepMC/src/particleCreationVertex.cc +23 -0
- HepMC/src/particleDecayVertex.cc HepMC/src/particleDecayVertex.cc +23 -0
- HepMC/src/particleHas.cc HepMC/src/particleHas.cc +27 -0
- HepMC/src/particleListAncestors.cc HepMC/src/particleListAncestors.cc +30 -0
- HepMC/src/particleListChildren.cc HepMC/src/particleListChildren.cc +30 -0
- HepMC/src/particleListDescendants.cc HepMC/src/particleListDescendants.cc +30 -0
- HepMC/src/particleListParents.cc HepMC/src/particleListParents.cc +30 -0
- HepMC/src/particleMomentum.cc HepMC/src/particleMomentum.cc +18 -0
- HepMC/src/particleMotherDaughter.cc HepMC/src/particleMotherDaughter.cc +39 -0
- HepMC/src/particleNum.cc HepMC/src/particleNum.cc +25 -0
- HepMC/src/particlePointers.cc HepMC/src/particlePointers.cc +46 -0
- HepMC/src/vertexHas.cc HepMC/src/vertexHas.cc +25 -0
- HepMC/src/vertexListAncestors.cc HepMC/src/vertexListAncestors.cc +24 -0
- HepMC/src/vertexListChildren.cc HepMC/src/vertexListChildren.cc +24 -0
- HepMC/src/vertexListDescendants.cc HepMC/src/vertexListDescendants.cc +25 -0
- HepMC/src/vertexListParents.cc HepMC/src/vertexListParents.cc +24 -0
- HepMC/src/vertexNum.cc HepMC/src/vertexNum.cc +26 -0
- HepMC/src/vertexPointers.cc HepMC/src/vertexPointers.cc +42 -0
- HepMC/src/writeComment.cc HepMC/src/writeComment.cc +25 -0
- HepPDT/.cvsignore HepPDT/.cvsignore +5 -0
- HepPDT/HepPDT-deps.in HepPDT/HepPDT-deps.in +1 -0
- HepPDT/HepPDT/.cvsignore HepPDT/HepPDT/.cvsignore +2 -0
- HepPDT/HepPDT/CommonParticleData.hh HepPDT/HepPDT/CommonParticleData.hh +115 -0
- HepPDT/HepPDT/CommonParticleData.icc HepPDT/HepPDT/CommonParticleData.icc +115 -0
- HepPDT/HepPDT/Constituent.hh HepPDT/HepPDT/Constituent.hh +68 -0
- HepPDT/HepPDT/DMFactory.hh HepPDT/HepPDT/DMFactory.hh +151 -0
- HepPDT/HepPDT/DMFactory.icc HepPDT/HepPDT/DMFactory.icc +103 -0
- HepPDT/HepPDT/DecayChannel.hh HepPDT/HepPDT/DecayChannel.hh +20 -0
- HepPDT/HepPDT/DecayChannelT.hh HepPDT/HepPDT/DecayChannelT.hh +92 -0
- HepPDT/HepPDT/DecayChannelT.icc HepPDT/HepPDT/DecayChannelT.icc +92 -0
- HepPDT/HepPDT/DecayData.hh HepPDT/HepPDT/DecayData.hh +19 -0
- HepPDT/HepPDT/DecayDataT.hh HepPDT/HepPDT/DecayDataT.hh +75 -0
- HepPDT/HepPDT/DecayDataT.icc HepPDT/HepPDT/DecayDataT.icc +93 -0
- HepPDT/HepPDT/DecayModel.hh HepPDT/HepPDT/DecayModel.hh +28 -0
- HepPDT/HepPDT/DecayModelBase.hh HepPDT/HepPDT/DecayModelBase.hh +77 -0
- HepPDT/HepPDT/DefTable.hh HepPDT/HepPDT/DefTable.hh +61 -0
- HepPDT/HepPDT/DefaultConfig.hh HepPDT/HepPDT/DefaultConfig.hh +40 -0
- HepPDT/HepPDT/Makefile.am HepPDT/HepPDT/Makefile.am +61 -0
- HepPDT/HepPDT/MapVector.hh HepPDT/HepPDT/MapVector.hh +214 -0
- HepPDT/HepPDT/Measurement.hh HepPDT/HepPDT/Measurement.hh +45 -0
- HepPDT/HepPDT/Measurement.icc HepPDT/HepPDT/Measurement.icc +68 -0
- HepPDT/HepPDT/NullDecayModel.hh HepPDT/HepPDT/NullDecayModel.hh +24 -0
- HepPDT/HepPDT/NullDecayModelT.hh HepPDT/HepPDT/NullDecayModelT.hh +64 -0
- HepPDT/HepPDT/PDGtoQQTable.hh HepPDT/HepPDT/PDGtoQQTable.hh +87 -0
- HepPDT/HepPDT/ParticleData.hh HepPDT/HepPDT/ParticleData.hh +19 -0
- HepPDT/HepPDT/ParticleDataT.hh HepPDT/HepPDT/ParticleDataT.hh +148 -0
- HepPDT/HepPDT/ParticleDataT.icc HepPDT/HepPDT/ParticleDataT.icc +63 -0
- HepPDT/HepPDT/ParticleDataTable.hh HepPDT/HepPDT/ParticleDataTable.hh +20 -0
- HepPDT/HepPDT/ParticleDataTableT.hh HepPDT/HepPDT/ParticleDataTableT.hh +115 -0
- HepPDT/HepPDT/ParticleDataTableT.icc HepPDT/HepPDT/ParticleDataTableT.icc +112 -0
- HepPDT/HepPDT/ParticleID.hh HepPDT/HepPDT/ParticleID.hh +142 -0
- HepPDT/HepPDT/ParticleID.icc HepPDT/HepPDT/ParticleID.icc +99 -0
- HepPDT/HepPDT/QQChannel.hh HepPDT/HepPDT/QQChannel.hh +131 -0
- HepPDT/HepPDT/QQDecay.hh HepPDT/HepPDT/QQDecay.hh +71 -0
- HepPDT/HepPDT/QQDecayTable.hh HepPDT/HepPDT/QQDecayTable.hh +94 -0
- HepPDT/HepPDT/QQStructs.hh HepPDT/HepPDT/QQStructs.hh +65 -0
- HepPDT/HepPDT/ResonanceStructure.hh HepPDT/HepPDT/ResonanceStructure.hh +73 -0
- HepPDT/HepPDT/SimpleDecayModel.hh HepPDT/HepPDT/SimpleDecayModel.hh +73 -0
- HepPDT/HepPDT/SimpleParticle.hh HepPDT/HepPDT/SimpleParticle.hh +18 -0
- HepPDT/HepPDT/SpinState.hh HepPDT/HepPDT/SpinState.hh +63 -0
- HepPDT/HepPDT/SpinState.icc HepPDT/HepPDT/SpinState.icc +47 -0
- HepPDT/HepPDT/StringStream.h HepPDT/HepPDT/StringStream.h +225 -0
- HepPDT/HepPDT/TableBuilder.hh HepPDT/HepPDT/TableBuilder.hh +30 -0
- HepPDT/HepPDT/TableBuilderHerwigT.icc HepPDT/HepPDT/TableBuilderHerwigT.icc +19 -0
- HepPDT/HepPDT/TableBuilderIsajetT.icc HepPDT/HepPDT/TableBuilderIsajetT.icc +19 -0
- HepPDT/HepPDT/TableBuilderPythiaT.icc HepPDT/HepPDT/TableBuilderPythiaT.icc +50 -0
- HepPDT/HepPDT/TableBuilderT.hh HepPDT/HepPDT/TableBuilderT.hh +132 -0
- HepPDT/HepPDT/TableBuilderT.icc HepPDT/HepPDT/TableBuilderT.icc +141 -0
- HepPDT/HepPDT/TableBuilderTEvtGen.icc HepPDT/HepPDT/TableBuilderTEvtGen.icc +156 -0
- HepPDT/HepPDT/TableBuilderTQQ.icc HepPDT/HepPDT/TableBuilderTQQ.icc +56 -0
- HepPDT/HepPDT/TempParticleData.hh HepPDT/HepPDT/TempParticleData.hh +112 -0
- HepPDT/HepPDT/Version.hh HepPDT/HepPDT/Version.hh +21 -0
- HepPDT/HepPDT/convertTemporaryMap.icc HepPDT/HepPDT/convertTemporaryMap.icc +43 -0
- HepPDT/HepPDT/pretend.hh HepPDT/HepPDT/pretend.hh +20 -0
- HepPDT/HepPDT/stringtodouble.hh HepPDT/HepPDT/stringtodouble.hh +19 -0
- HepPDT/INSTALL HepPDT/INSTALL +61 -0
- HepPDT/Makefile.am HepPDT/Makefile.am +60 -0
- HepPDT/autotools/.cvsignore HepPDT/autotools/.cvsignore +6 -0
- HepPDT/autotools/ltmain.sh HepPDT/autotools/ltmain.sh +6290 -0
- HepPDT/bootstrap HepPDT/bootstrap +10 -0
- HepPDT/configure.in HepPDT/configure.in +235 -0
- HepPDT/data/.cvsignore HepPDT/data/.cvsignore +1 -0
- HepPDT/data/Makefile.am HepPDT/data/Makefile.am +16 -0
- HepPDT/data/PDG_mass_width_1998.mc HepPDT/data/PDG_mass_width_1998.mc +329 -0
- HepPDT/data/PDG_mass_width_1998_withSusy.mc HepPDT/data/PDG_mass_width_1998_withSusy.mc +368 -0
- HepPDT/data/PDG_mass_width_2000.mc HepPDT/data/PDG_mass_width_2000.mc +338 -0
- HepPDT/data/PDG_mass_width_2001.mc HepPDT/data/PDG_mass_width_2001.mc +340 -0
- HepPDT/data/PDG_mass_width_2002.mc HepPDT/data/PDG_mass_width_2002.mc +349 -0
- HepPDT/doc/.cvsignore HepPDT/doc/.cvsignore +1 -0
- HepPDT/doc/HepPDT-class.eps HepPDT/doc/HepPDT-class.eps +249 -0
- HepPDT/doc/HepPDT.tex HepPDT/doc/HepPDT.tex +43 -0
- HepPDT/doc/Makefile.am HepPDT/doc/Makefile.am +42 -0
- HepPDT/doc/PDT_DesignSpecialIssues.txt HepPDT/doc/PDT_DesignSpecialIssues.txt +262 -0
- HepPDT/doc/PDT_DesignSummary.txt HepPDT/doc/PDT_DesignSummary.txt +257 -0
- HepPDT/doc/PDT_TemplateDecision.txt HepPDT/doc/PDT_TemplateDecision.txt +305 -0
- HepPDT/doc/ParticleIDapp.tex HepPDT/doc/ParticleIDapp.tex +148 -0
- HepPDT/doc/TranslationTables.tex HepPDT/doc/TranslationTables.tex +28 -0
- HepPDT/doc/baryon.tex HepPDT/doc/baryon.tex +183 -0
- HepPDT/doc/body.tex HepPDT/doc/body.tex +478 -0
- HepPDT/doc/elem.tex HepPDT/doc/elem.tex +195 -0
- HepPDT/doc/intro.tex HepPDT/doc/intro.tex +70 -0
- HepPDT/doc/meson.tex HepPDT/doc/meson.tex +308 -0
- HepPDT/doc/qqint.tex HepPDT/doc/qqint.tex +32 -0
- HepPDT/doc/readdata.tex HepPDT/doc/readdata.tex +193 -0
- HepPDT/doc/refer.tex HepPDT/doc/refer.tex +32 -0
- HepPDT/examples/GNUmakefile HepPDT/examples/GNUmakefile +134 -0
- HepPDT/examples/ModeA.cpp HepPDT/examples/ModeA.cpp +12 -0
- HepPDT/examples/ModeA.hh HepPDT/examples/ModeA.hh +24 -0
- HepPDT/examples/ModeAT.hh HepPDT/examples/ModeAT.hh +61 -0
- HepPDT/examples/ModeB.cpp HepPDT/examples/ModeB.cpp +33 -0
- HepPDT/examples/ModeB.hh HepPDT/examples/ModeB.hh +55 -0
- HepPDT/examples/data/DECAY.EvtGen.DEC HepPDT/examples/data/DECAY.EvtGen.DEC +2936 -0
- HepPDT/examples/data/decay.dec HepPDT/examples/data/decay.dec +5816 -0
- HepPDT/examples/data/evt.pdl HepPDT/examples/data/evt.pdl +559 -0
- HepPDT/examples/data/pdt.table HepPDT/examples/data/pdt.table +506 -0
- HepPDT/examples/data/pythia.tbl HepPDT/examples/data/pythia.tbl +3196 -0
- HepPDT/examples/examDMF.cc HepPDT/examples/examDMF.cc +81 -0
- HepPDT/examples/examMyPDT.cc HepPDT/examples/examMyPDT.cc +79 -0
- HepPDT/examples/examMyPDT.out.save HepPDT/examples/examMyPDT.out.save +12 -0
- HepPDT/examples/examReadEvtGen.cc HepPDT/examples/examReadEvtGen.cc +52 -0
- HepPDT/examples/examReadEvtGen.out.save HepPDT/examples/examReadEvtGen.out.save +1371 -0
- HepPDT/examples/examReadPDG.cc HepPDT/examples/examReadPDG.cc +44 -0
- HepPDT/examples/examReadPDG.out.save HepPDT/examples/examReadPDG.out.save +247 -0
- HepPDT/examples/examReadPythia.cc HepPDT/examples/examReadPythia.cc +51 -0
- HepPDT/examples/examReadPythia.out.save HepPDT/examples/examReadPythia.out.save +3080 -0
- HepPDT/examples/examReadQQ.cc HepPDT/examples/examReadQQ.cc +55 -0
- HepPDT/examples/examReadQQ.out.save HepPDT/examples/examReadQQ.out.save +3263 -0
- HepPDT/src/.cvsignore HepPDT/src/.cvsignore +1 -0
- HepPDT/src/Constituent.cc HepPDT/src/Constituent.cc +48 -0
- HepPDT/src/DMFactory.cc HepPDT/src/DMFactory.cc +28 -0
- HepPDT/src/DefTable.cc HepPDT/src/DefTable.cc +50 -0
- HepPDT/src/Makefile.am HepPDT/src/Makefile.am +65 -0
- HepPDT/src/PDGtoQQTable.cc HepPDT/src/PDGtoQQTable.cc +101 -0
- HepPDT/src/QQChannel.cc HepPDT/src/QQChannel.cc +73 -0
- HepPDT/src/QQDecay.cc HepPDT/src/QQDecay.cc +41 -0
- HepPDT/src/QQDecayTable.cc HepPDT/src/QQDecayTable.cc +72 -0
- HepPDT/src/ResonanceStructure.cc HepPDT/src/ResonanceStructure.cc +63 -0
- HepPDT/src/SimpleDecayModel.cc HepPDT/src/SimpleDecayModel.cc +50 -0
- HepPDT/src/TempParticleData.cc HepPDT/src/TempParticleData.cc +168 -0
- HepPDT/src/addEvtGenParticles.cc HepPDT/src/addEvtGenParticles.cc +215 -0
- HepPDT/src/addPDGParticles.cc HepPDT/src/addPDGParticles.cc +91 -0
- HepPDT/src/addPythiaParticles.cc HepPDT/src/addPythiaParticles.cc +120 -0
- HepPDT/src/addQQParticles.cc HepPDT/src/addQQParticles.cc +74 -0
- HepPDT/src/buildTable.cc HepPDT/src/buildTable.cc +35 -0
- HepPDT/src/calculateWidthFromLifetime.cc HepPDT/src/calculateWidthFromLifetime.cc +21 -0
- HepPDT/src/digit.cc HepPDT/src/digit.cc +23 -0
- HepPDT/src/extraBits.cc HepPDT/src/extraBits.cc +19 -0
- HepPDT/src/fundamentalID.cc HepPDT/src/fundamentalID.cc +27 -0
- HepPDT/src/hasMethods.cc HepPDT/src/hasMethods.cc +75 -0
- HepPDT/src/ion.cc HepPDT/src/ion.cc +26 -0
- HepPDT/src/isBaryon.cc HepPDT/src/isBaryon.cc +24 -0
- HepPDT/src/isDiQuark.cc HepPDT/src/isDiQuark.cc +29 -0
- HepPDT/src/isHadron.cc HepPDT/src/isHadron.cc +22 -0
- HepPDT/src/isLepton.cc HepPDT/src/isLepton.cc +21 -0
- HepPDT/src/isMeson.cc HepPDT/src/isMeson.cc +34 -0
- HepPDT/src/isNucleus.cc HepPDT/src/isNucleus.cc +26 -0
- HepPDT/src/isValid.cc HepPDT/src/isValid.cc +31 -0
- HepPDT/src/jSpin.cc HepPDT/src/jSpin.cc +32 -0
- HepPDT/src/lSpin.cc HepPDT/src/lSpin.cc +65 -0
- HepPDT/src/lifetime.cc HepPDT/src/lifetime.cc +31 -0
- HepPDT/src/quarks.cc HepPDT/src/quarks.cc +64 -0
- HepPDT/src/readQQchannel.cc HepPDT/src/readQQchannel.cc +44 -0
- HepPDT/src/readQQstream.cc HepPDT/src/readQQstream.cc +230 -0
- HepPDT/src/sSpin.cc HepPDT/src/sSpin.cc +41 -0
- HepPDT/src/spindtoi.cc HepPDT/src/spindtoi.cc +14 -0
- HepPDT/src/spinitod.cc HepPDT/src/spinitod.cc +18 -0
- HepPDT/src/stringtodouble.cc HepPDT/src/stringtodouble.cc +28 -0
- HepPDT/src/threeCharge.cc HepPDT/src/threeCharge.cc +63 -0
- HepPDT/src/translateEvtGentoPDT.cc HepPDT/src/translateEvtGentoPDT.cc +142 -0
- HepPDT/src/translateGeanttoPDT.cc HepPDT/src/translateGeanttoPDT.cc +95 -0
- HepPDT/src/translateHerwigtoPDT.cc HepPDT/src/translateHerwigtoPDT.cc +84 -0
- HepPDT/src/translateIsajettoPDT.cc HepPDT/src/translateIsajettoPDT.cc +121 -0
- HepPDT/src/translatePDGtabletoPDT.cc HepPDT/src/translatePDGtabletoPDT.cc +105 -0
- HepPDT/src/translatePDTtoEvtGen.cc HepPDT/src/translatePDTtoEvtGen.cc +143 -0
- HepPDT/src/translatePDTtoGeant.cc HepPDT/src/translatePDTtoGeant.cc +98 -0
- HepPDT/src/translatePDTtoHerwig.cc HepPDT/src/translatePDTtoHerwig.cc +91 -0
- HepPDT/src/translatePDTtoIsajet.cc HepPDT/src/translatePDTtoIsajet.cc +173 -0
- HepPDT/src/translatePDTtoPDGtable.cc HepPDT/src/translatePDTtoPDGtable.cc +102 -0
- HepPDT/src/translatePDTtoPythia.cc HepPDT/src/translatePDTtoPythia.cc +135 -0
- HepPDT/src/translatePDTtoQQ.cc HepPDT/src/translatePDTtoQQ.cc +20 -0
- HepPDT/src/translatePythiatoPDT.cc HepPDT/src/translatePythiatoPDT.cc +131 -0
- HepPDT/src/translateQQtoPDT.cc HepPDT/src/translateQQtoPDT.cc +20 -0
- HepPDT/src/version.cc HepPDT/src/version.cc +27 -0
- HepPDT/src/write.cc HepPDT/src/write.cc +65 -0
- HepPDT/src/writeTranslations.cc HepPDT/src/writeTranslations.cc +44 -0
- HepPDT/test/.cvsignore HepPDT/test/.cvsignore +1 -0
- HepPDT/test/Makefile.am HepPDT/test/Makefile.am +29 -0
- HepPDT/test/testHepPDT.cc HepPDT/test/testHepPDT.cc +53 -0
- HepPDT/test/testHepPDT.input.in HepPDT/test/testHepPDT.input.in +1 -0
- HepPDT/test/testHepPDT.output HepPDT/test/testHepPDT.output +247 -0
- HepPDT/test/testHepPDT.sh.in HepPDT/test/testHepPDT.sh.in +7 -0
- HepPDT/test/testPID.cc HepPDT/test/testPID.cc +101 -0
- HepPDT/test/testPID.output HepPDT/test/testPID.output +71 -0
- HepPDT/test/testPID.sh.in HepPDT/test/testPID.sh.in +7 -0
- INSTALL INSTALL +106 -0
- Makefile.am Makefile.am +53 -0
- Matrix/.cvsignore Matrix/.cvsignore +5 -0
- Matrix/INSTALL Matrix/INSTALL +61 -0
- Matrix/Makefile.am Matrix/Makefile.am +58 -0
- Matrix/Matrix-deps.in Matrix/Matrix-deps.in +3 -0
- Matrix/Matrix/.cvsignore Matrix/Matrix/.cvsignore +2 -0
- Matrix/Matrix/DiagMatrix.h Matrix/Matrix/DiagMatrix.h +268 -0
- Matrix/Matrix/DiagMatrix.icc Matrix/Matrix/DiagMatrix.icc +149 -0
- Matrix/Matrix/GenMatrix.h Matrix/Matrix/GenMatrix.h +155 -0
- Matrix/Matrix/GenMatrix.icc Matrix/Matrix/GenMatrix.icc +87 -0
- Matrix/Matrix/Makefile.am Matrix/Matrix/Makefile.am +20 -0
- Matrix/Matrix/Matrix.h Matrix/Matrix/Matrix.h +536 -0
- Matrix/Matrix/Matrix.icc Matrix/Matrix/Matrix.icc +143 -0
- Matrix/Matrix/Pile.h Matrix/Matrix/Pile.h +149 -0
- Matrix/Matrix/SymMatrix.h Matrix/Matrix/SymMatrix.h +383 -0
- Matrix/Matrix/SymMatrix.icc Matrix/Matrix/SymMatrix.icc +152 -0
- Matrix/Matrix/Vector.h Matrix/Matrix/Vector.h +241 -0
- Matrix/Matrix/Vector.icc Matrix/Matrix/Vector.icc +124 -0
- Matrix/autotools/.cvsignore Matrix/autotools/.cvsignore +6 -0
- Matrix/autotools/ltmain.sh Matrix/autotools/ltmain.sh +6290 -0
- Matrix/bootstrap Matrix/bootstrap +10 -0
- Matrix/configure.in Matrix/configure.in +210 -0
- Matrix/src/.cvsignore Matrix/src/.cvsignore +1 -0
- Matrix/src/DiagMatrix.cc Matrix/src/DiagMatrix.cc +773 -0
- Matrix/src/GenMatrix.cc Matrix/src/GenMatrix.cc +149 -0
- Matrix/src/Makefile.am Matrix/src/Makefile.am +16 -0
- Matrix/src/Matrix.cc Matrix/src/Matrix.cc +856 -0
- Matrix/src/MatrixEqRotation.cc Matrix/src/MatrixEqRotation.cc +70 -0
- Matrix/src/MatrixInvert.cc Matrix/src/MatrixInvert.cc +954 -0
- Matrix/src/MatrixLinear.cc Matrix/src/MatrixLinear.cc +926 -0
- Matrix/src/SymMatrix.cc Matrix/src/SymMatrix.cc +1374 -0
- Matrix/src/SymMatrixInvert.cc Matrix/src/SymMatrixInvert.cc +1039 -0
- Matrix/src/Vector.cc Matrix/src/Vector.cc +649 -0
- Matrix/test/.cvsignore Matrix/test/.cvsignore +1 -0
- Matrix/test/Makefile.am Matrix/test/Makefile.am +33 -0
- Matrix/test/testInversion.cc Matrix/test/testInversion.cc +287 -0
- Matrix/test/testInversion.output Matrix/test/testInversion.output +49 -0
- Matrix/test/testInversion.sh.in Matrix/test/testInversion.sh.in +6 -0
- Matrix/test/testMatrix.cc Matrix/test/testMatrix.cc +832 -0
- Matrix/test/testMatrix.output Matrix/test/testMatrix.output +621 -0
- Matrix/test/testMatrix.sh.in Matrix/test/testMatrix.sh.in +6 -0
- README README +17 -0
- Random/.cvsignore Random/.cvsignore +5 -0
- Random/INSTALL Random/INSTALL +61 -0
- Random/Makefile.am Random/Makefile.am +60 -0
- Random/Random-deps.in Random/Random-deps.in +1 -0
- Random/Random/.cvsignore Random/Random/.cvsignore +2 -0
- Random/Random/DRand48Engine.h Random/Random/DRand48Engine.h +109 -0
- Random/Random/DualRand.h Random/Random/DualRand.h +136 -0
- Random/Random/Hurd160Engine.h Random/Random/Hurd160Engine.h +105 -0
- Random/Random/Hurd288Engine.h Random/Random/Hurd288Engine.h +104 -0
- Random/Random/JamesRandom.h Random/Random/JamesRandom.h +107 -0
- Random/Random/MTwistEngine.h Random/Random/MTwistEngine.h +100 -0
- Random/Random/Makefile.am Random/Random/Makefile.am +62 -0
- Random/Random/NonRandomEngine.h Random/Random/NonRandomEngine.h +86 -0
- Random/Random/RandBinomial.h Random/Random/RandBinomial.h +112 -0
- Random/Random/RandBinomial.icc Random/Random/RandBinomial.icc +46 -0
- Random/Random/RandBit.h Random/Random/RandBit.h +91 -0
- Random/Random/RandBit.icc Random/Random/RandBit.icc +77 -0
- Random/Random/RandBreitWigner.h Random/Random/RandBreitWigner.h +143 -0
- Random/Random/RandBreitWigner.icc Random/Random/RandBreitWigner.icc +27 -0
- Random/Random/RandChiSquare.h Random/Random/RandChiSquare.h +109 -0
- Random/Random/RandChiSquare.icc Random/Random/RandChiSquare.icc +44 -0
- Random/Random/RandEngine.h Random/Random/RandEngine.h +105 -0
- Random/Random/RandExponential.h Random/Random/RandExponential.h +105 -0
- Random/Random/RandExponential.icc Random/Random/RandExponential.icc +48 -0
- Random/Random/RandFlat.h Random/Random/RandFlat.h +189 -0
- Random/Random/RandFlat.icc Random/Random/RandFlat.icc +162 -0
- Random/Random/RandGamma.h Random/Random/RandGamma.h +114 -0
- Random/Random/RandGamma.icc Random/Random/RandGamma.icc +46 -0
- Random/Random/RandGauss.h Random/Random/RandGauss.h +154 -0
- Random/Random/RandGauss.icc Random/Random/RandGauss.icc +44 -0
- Random/Random/RandGaussQ.h Random/Random/RandGaussQ.h +119 -0
- Random/Random/RandGaussQ.icc Random/Random/RandGaussQ.icc +64 -0
- Random/Random/RandGaussT.h Random/Random/RandGaussT.h +125 -0
- Random/Random/RandGaussT.icc Random/Random/RandGaussT.icc +65 -0
- Random/Random/RandGeneral.h Random/Random/RandGeneral.h +143 -0
- Random/Random/RandGeneral.icc Random/Random/RandGeneral.icc +46 -0
- Random/Random/RandLandau.h Random/Random/RandLandau.h +114 -0
- Random/Random/RandLandau.icc Random/Random/RandLandau.icc +55 -0
- Random/Random/RandPoisson.h Random/Random/RandPoisson.h +129 -0
- Random/Random/RandPoisson.icc Random/Random/RandPoisson.icc +33 -0
- Random/Random/RandPoissonQ.h Random/Random/RandPoissonQ.h +153 -0
- Random/Random/RandPoissonQ.icc Random/Random/RandPoissonQ.icc +32 -0
- Random/Random/RandPoissonT.h Random/Random/RandPoissonT.h +100 -0
- Random/Random/RandPoissonT.icc Random/Random/RandPoissonT.icc +14 -0
- Random/Random/RandStudentT.h Random/Random/RandStudentT.h +111 -0
- Random/Random/RandStudentT.icc Random/Random/RandStudentT.icc +37 -0
- Random/Random/Random.h Random/Random/Random.h +155 -0
- Random/Random/Random.icc Random/Random/Random.icc +32 -0
- Random/Random/RandomEngine.h Random/Random/RandomEngine.h +136 -0
- Random/Random/RandomEngine.icc Random/Random/RandomEngine.icc +27 -0
- Random/Random/RandomFunc.h Random/Random/RandomFunc.h +61 -0
- Random/Random/Randomize.h Random/Random/Randomize.h +76 -0
- Random/Random/RanecuEngine.h Random/Random/RanecuEngine.h +124 -0
- Random/Random/Ranlux64Engine.h Random/Random/Ranlux64Engine.h +124 -0
- Random/Random/RanluxEngine.h Random/Random/RanluxEngine.h +125 -0
- Random/Random/RanshiEngine.h Random/Random/RanshiEngine.h +117 -0
- Random/Random/SeedTable.h Random/Random/SeedTable.h +251 -0
- Random/Random/Stat.h Random/Random/Stat.h +89 -0
- Random/Random/TripleRand.h Random/Random/TripleRand.h +163 -0
- Random/autotools/.cvsignore Random/autotools/.cvsignore +6 -0
- Random/autotools/ltmain.sh Random/autotools/ltmain.sh +6290 -0
- Random/bootstrap Random/bootstrap +10 -0
- Random/configure.in Random/configure.in +217 -0
- Random/doc/.cvsignore Random/doc/.cvsignore +1 -0
- Random/doc/Makefile.am Random/doc/Makefile.am +12 -0
- Random/doc/Random.html Random/doc/Random.html +915 -0
- Random/doc/html/CLHEP-random.html Random/doc/html/CLHEP-random.html +525 -0
- Random/doc/validation.doc Random/doc/validation.doc +368 -0
- Random/gaussQTables.cdat Random/gaussQTables.cdat +1254 -0
- Random/gaussTables.cdat Random/gaussTables.cdat +1910 -0
- Random/poissonTables.cdat Random/poissonTables.cdat +378 -0
- Random/src/.cvsignore Random/src/.cvsignore +1 -0
- Random/src/DRand48Engine.cc Random/src/DRand48Engine.cc +236 -0
- Random/src/DualRand.cc Random/src/DualRand.cc +414 -0
- Random/src/Hurd160Engine.cc Random/src/Hurd160Engine.cc +268 -0
- Random/src/Hurd288Engine.cc Random/src/Hurd288Engine.cc +289 -0
- Random/src/JamesRandom.cc Random/src/JamesRandom.cc +318 -0
- Random/src/MTwistEngine.cc Random/src/MTwistEngine.cc +322 -0
- Random/src/Makefile.am Random/src/Makefile.am +41 -0
- Random/src/NonRandomEngine.cc Random/src/NonRandomEngine.cc +79 -0
- Random/src/RandBinomial.cc Random/src/RandBinomial.cc +336 -0
- Random/src/RandBit.cc Random/src/RandBit.cc +28 -0
- Random/src/RandBreitWigner.cc Random/src/RandBreitWigner.cc +295 -0
- Random/src/RandChiSquare.cc Random/src/RandChiSquare.cc +144 -0
- Random/src/RandEngine.cc Random/src/RandEngine.cc +247 -0
- Random/src/RandExponential.cc Random/src/RandExponential.cc +82 -0
- Random/src/RandFlat.cc Random/src/RandFlat.cc +153 -0
- Random/src/RandGamma.cc Random/src/RandGamma.cc +229 -0
- Random/src/RandGauss.cc Random/src/RandGauss.cc +224 -0
- Random/src/RandGaussQ.cc Random/src/RandGaussQ.cc +185 -0
- Random/src/RandGaussT.cc Random/src/RandGaussT.cc +76 -0
- Random/src/RandGeneral.cc Random/src/RandGeneral.cc +244 -0
- Random/src/RandLandau.cc Random/src/RandLandau.cc +375 -0
- Random/src/RandPoisson.cc Random/src/RandPoisson.cc +283 -0
- Random/src/RandPoissonQ.cc Random/src/RandPoissonQ.cc +531 -0
- Random/src/RandPoissonT.cc Random/src/RandPoissonT.cc +98 -0
- Random/src/RandStudentT.cc Random/src/RandStudentT.cc +145 -0
- Random/src/Random.cc Random/src/Random.cc +158 -0
- Random/src/RandomEngine.cc Random/src/RandomEngine.cc +47 -0
- Random/src/RanecuEngine.cc Random/src/RanecuEngine.cc +305 -0
- Random/src/Ranlux64Engine.cc Random/src/Ranlux64Engine.cc +525 -0
- Random/src/RanluxEngine.cc Random/src/RanluxEngine.cc +498 -0
- Random/src/RanshiEngine.cc Random/src/RanshiEngine.cc +275 -0
- Random/src/TripleRand.cc Random/src/TripleRand.cc +420 -0
- Random/src/drand48.src Random/src/drand48.src +242 -0
- Random/src/erfQ.cc Random/src/erfQ.cc +52 -0
- Random/src/flatToGaussian.cc Random/src/flatToGaussian.cc +310 -0
- Random/src/gammln.cc Random/src/gammln.cc +49 -0
- Random/src/gaussQtables.src Random/src/gaussQtables.src +469 -0
- Random/src/gaussTables.src Random/src/gaussTables.src +566 -0
- Random/src/poissonTables.src Random/src/poissonTables.src +239 -0
- Random/test/.cvsignore Random/test/.cvsignore +1 -0
- Random/test/Makefile.am Random/test/Makefile.am +33 -0
- Random/test/gaussSmall.cc Random/test/gaussSmall.cc +40 -0
- Random/test/gaussSmall.sh.in Random/test/gaussSmall.sh.in +6 -0
- Random/test/gaussSpeed.cc Random/test/gaussSpeed.cc +309 -0
- Random/test/gaussSpeed.sh.in Random/test/gaussSpeed.sh.in +6 -0
- Random/test/ranRestoreTest.cc Random/test/ranRestoreTest.cc +216 -0
- Random/test/ranRestoreTest.sh.in Random/test/ranRestoreTest.sh.in +6 -0
- Random/test/testRandDists.cc Random/test/testRandDists.cc +1041 -0
- Random/test/testRandDists.dat Random/test/testRandDists.dat +9 -0
- Random/test/testRandDists.input Random/test/testRandDists.input +36 -0
- Random/test/testRandDists.input-long Random/test/testRandDists.input-long +42 -0
- Random/test/testRandDists.output Random/test/testRandDists.output +1079 -0
- Random/test/testRandDists.sh.in Random/test/testRandDists.sh.in +6 -0
- Random/test/testRandom.cc Random/test/testRandom.cc +352 -0
- Random/test/testRandom.input Random/test/testRandom.input +14 -0
- Random/test/testRandom.sh.in Random/test/testRandom.sh.in +6 -0
- RandomObjects/.cvsignore RandomObjects/.cvsignore +5 -0
- RandomObjects/INSTALL RandomObjects/INSTALL +61 -0
- RandomObjects/Makefile.am RandomObjects/Makefile.am +58 -0
- RandomObjects/RandomObjects-deps.in RandomObjects/RandomObjects-deps.in +3 -0
- RandomObjects/RandomObjects/.cvsignore RandomObjects/RandomObjects/.cvsignore +2 -0
- RandomObjects/RandomObjects/Makefile.am RandomObjects/RandomObjects/Makefile.am +12 -0
- RandomObjects/RandomObjects/RandMultiGauss.h RandomObjects/RandomObjects/RandMultiGauss.h +144 -0
- RandomObjects/RandomObjects/RandomVector.h RandomObjects/RandomObjects/RandomVector.h +131 -0
- RandomObjects/RandomObjects/RandomVector.icc RandomObjects/RandomObjects/RandomVector.icc +91 -0
- RandomObjects/autotools/.cvsignore RandomObjects/autotools/.cvsignore +6 -0
- RandomObjects/autotools/ltmain.sh RandomObjects/autotools/ltmain.sh +6290 -0
- RandomObjects/bootstrap RandomObjects/bootstrap +10 -0
- RandomObjects/configure.in RandomObjects/configure.in +209 -0
- RandomObjects/src/.cvsignore RandomObjects/src/.cvsignore +1 -0
- RandomObjects/src/Makefile.am RandomObjects/src/Makefile.am +9 -0
- RandomObjects/src/RandMultiGauss.cc RandomObjects/src/RandMultiGauss.cc +298 -0
- RandomObjects/src/RandomVector.cc RandomObjects/src/RandomVector.cc +47 -0
- RandomObjects/test/.cvsignore RandomObjects/test/.cvsignore +1 -0
- RandomObjects/test/Makefile.am RandomObjects/test/Makefile.am +31 -0
- RandomObjects/test/testVectorDists.cc RandomObjects/test/testVectorDists.cc +340 -0
- RandomObjects/test/testVectorDists.input RandomObjects/test/testVectorDists.input +14 -0
- RandomObjects/test/testVectorDists.output RandomObjects/test/testVectorDists.output +96 -0
- RandomObjects/test/testVectorDists.sh.in RandomObjects/test/testVectorDists.sh.in +6 -0
- StdHep/.cvsignore StdHep/.cvsignore +5 -0
- StdHep/INSTALL StdHep/INSTALL +61 -0
- StdHep/Makefile.am StdHep/Makefile.am +61 -0
- StdHep/StdHep-deps.in StdHep/StdHep-deps.in +4 -0
- StdHep/StdHep/.cvsignore StdHep/StdHep/.cvsignore +2 -0
- StdHep/StdHep/CBcm.hh StdHep/StdHep/CBcm.hh +40 -0
- StdHep/StdHep/CBstdhep.hh StdHep/StdHep/CBstdhep.hh +93 -0
- StdHep/StdHep/CBstdhep.icc StdHep/StdHep/CBstdhep.icc +112 -0
- StdHep/StdHep/ConversionMethods.hh StdHep/StdHep/ConversionMethods.hh +39 -0
- StdHep/StdHep/Makefile.am StdHep/StdHep/Makefile.am +27 -0
- StdHep/StdHep/ReadStdHep.hh StdHep/StdHep/ReadStdHep.hh +38 -0
- StdHep/StdHep/StdEvent.hh StdHep/StdHep/StdEvent.hh +94 -0
- StdHep/StdHep/StdEventConvert.hh StdHep/StdHep/StdEventConvert.hh +56 -0
- StdHep/StdHep/StdEventConvert.icc StdHep/StdHep/StdEventConvert.icc +58 -0
- StdHep/StdHep/StdHep.hh StdHep/StdHep/StdHep.hh +32 -0
- StdHep/StdHep/StdHepVersion.h StdHep/StdHep/StdHepVersion.h +14 -0
- StdHep/StdHep/StdHepfromStdEvent.icc StdHep/StdHep/StdHepfromStdEvent.icc +190 -0
- StdHep/StdHep/StdHeptoGenEvent.icc StdHep/StdHep/StdHeptoGenEvent.icc +236 -0
- StdHep/StdHep/StdRunInfo.hh StdHep/StdHep/StdRunInfo.hh +70 -0
- StdHep/StdHep/StdRunInfoConvert.hh StdHep/StdHep/StdRunInfoConvert.hh +30 -0
- StdHep/StdHep/StdRunInfoConvert.icc StdHep/StdHep/StdRunInfoConvert.icc +50 -0
- StdHep/StdHep/WriteStdHep.hh StdHep/StdHep/WriteStdHep.hh +30 -0
- StdHep/StdHep/include/.cvsignore StdHep/StdHep/include/.cvsignore +1 -0
- StdHep/StdHep/include/Makefile.am StdHep/StdHep/include/Makefile.am +20 -0
- StdHep/StdHep/include/herwig61.inc StdHep/StdHep/include/herwig61.inc +224 -0
- StdHep/StdHep/include/herwig64.inc StdHep/StdHep/include/herwig64.inc +329 -0
- StdHep/StdHep/include/stdcm1.h StdHep/StdHep/include/stdcm1.h +18 -0
- StdHep/StdHep/include/stdcm1.inc StdHep/StdHep/include/stdcm1.inc +24 -0
- StdHep/StdHep/include/stdcnt.h StdHep/StdHep/include/stdcnt.h +7 -0
- StdHep/StdHep/include/stdcnt.inc StdHep/StdHep/include/stdcnt.inc +6 -0
- StdHep/StdHep/include/stdevent.h StdHep/StdHep/include/stdevent.h +29 -0
- StdHep/StdHep/include/stdlun.h StdHep/StdHep/include/stdlun.h +14 -0
- StdHep/StdHep/include/stdlun.inc StdHep/StdHep/include/stdlun.inc +10 -0
- StdHep/StdHep/include/stdtmp.h StdHep/StdHep/include/stdtmp.h +23 -0
- StdHep/StdHep/include/stdtmp.inc StdHep/StdHep/include/stdtmp.inc +54 -0
- StdHep/StdHep/include/stdver.h StdHep/StdHep/include/stdver.h +5 -0
- StdHep/StdHep/include/stdver.inc StdHep/StdHep/include/stdver.inc +10 -0
- StdHep/autotools/.cvsignore StdHep/autotools/.cvsignore +6 -0
- StdHep/autotools/ltmain.sh StdHep/autotools/ltmain.sh +6290 -0
- StdHep/bootstrap StdHep/bootstrap +10 -0
- StdHep/configure.in StdHep/configure.in +227 -0
- StdHep/examples/.cvsignore StdHep/examples/.cvsignore +9 -0
- StdHep/examples/GNUmakefile StdHep/examples/GNUmakefile +264 -0
- StdHep/examples/analyzeEvent.cc StdHep/examples/analyzeEvent.cc +66 -0
- StdHep/examples/analyzeEvent.hh StdHep/examples/analyzeEvent.hh +18 -0
- StdHep/examples/bookhist.F StdHep/examples/bookhist.F +36 -0
- StdHep/examples/dummy.F StdHep/examples/dummy.F +8 -0
- StdHep/examples/examHerwigToStdHep.cc StdHep/examples/examHerwigToStdHep.cc +76 -0
- StdHep/examples/examPythiaToStdHep.cc StdHep/examples/examPythiaToStdHep.cc +97 -0
- StdHep/examples/hwghep.F StdHep/examples/hwghep.F +41 -0
- StdHep/examples/hwtran.F StdHep/examples/hwtran.F +96 -0
- StdHep/examples/lunhep.F StdHep/examples/lunhep.F +143 -0
- StdHep/examples/lutran.F StdHep/examples/lutran.F +150 -0
- StdHep/examples/readPythia.cc StdHep/examples/readPythia.cc +65 -0
- StdHep/examples/readPythiaHerwig.cc StdHep/examples/readPythiaHerwig.cc +71 -0
- StdHep/examples/readcxx.F StdHep/examples/readcxx.F +10 -0
- StdHep/examples/stdflhwxsec.F StdHep/examples/stdflhwxsec.F +35 -0
- StdHep/examples/stdflpyxsec.F StdHep/examples/stdflpyxsec.F +36 -0
- StdHep/examples/stdhwgcxx.F StdHep/examples/stdhwgcxx.F +156 -0
- StdHep/examples/stdpytcxx.F StdHep/examples/stdpytcxx.F +60 -0
- StdHep/src/.cvsignore StdHep/src/.cvsignore +1 -0
- StdHep/src/Makefile.am StdHep/src/Makefile.am +40 -0
- StdHep/src/StdEvent.cc StdHep/src/StdEvent.cc +42 -0
- StdHep/src/StdEventPAncestors.cc StdHep/src/StdEventPAncestors.cc +26 -0
- StdHep/src/StdEventPChildren.cc StdHep/src/StdEventPChildren.cc +26 -0
- StdHep/src/StdEventPDescendants.cc StdHep/src/StdEventPDescendants.cc +26 -0
- StdHep/src/StdEventPParents.cc StdHep/src/StdEventPParents.cc +26 -0
- StdHep/src/StdEventVAncestors.cc StdHep/src/StdEventVAncestors.cc +27 -0
- StdHep/src/StdEventVChildren.cc StdHep/src/StdEventVChildren.cc +27 -0
- StdHep/src/StdEventVDescendants.cc StdHep/src/StdEventVDescendants.cc +27 -0
- StdHep/src/StdEventVParents.cc StdHep/src/StdEventVParents.cc +27 -0
- StdHep/src/StdEventVertex.cc StdHep/src/StdEventVertex.cc +47 -0
- StdHep/src/StdRunInfo.cc StdHep/src/StdRunInfo.cc +70 -0
- StdHep/src/WriteStdHep.cc StdHep/src/WriteStdHep.cc +76 -0
- StdHep/src/appendCollision.cc StdHep/src/appendCollision.cc +18 -0
- StdHep/src/collision.cc StdHep/src/collision.cc +22 -0
- StdHep/src/combineEvents.cc StdHep/src/combineEvents.cc +38 -0
- StdHep/src/findBlockType.cc StdHep/src/findBlockType.cc +43 -0
- StdHep/src/findNextStdEvent.cc StdHep/src/findNextStdEvent.cc +39 -0
- StdHep/src/numParticles.cc StdHep/src/numParticles.cc +25 -0
- StdHep/src/numVertices.cc StdHep/src/numVertices.cc +24 -0
- StdHep/src/parseStdEventLine.cc StdHep/src/parseStdEventLine.cc +31 -0
- StdHep/src/particle.cc StdHep/src/particle.cc +43 -0
- StdHep/src/print.cc StdHep/src/print.cc +31 -0
- StdHep/src/printVersion.cc StdHep/src/printVersion.cc +36 -0
- StdHep/src/readBlockType.cc StdHep/src/readBlockType.cc +44 -0
- StdHep/src/readRunInfo.cc StdHep/src/readRunInfo.cc +80 -0
- StdHep/src/readStdComment.cc StdHep/src/readStdComment.cc +31 -0
- StdHep/src/readStdEvent.cc StdHep/src/readStdEvent.cc +38 -0
- StdHep/src/readStdEventInfo.cc StdHep/src/readStdEventInfo.cc +44 -0
- StdHep/src/readStdRun.cc StdHep/src/readStdRun.cc +37 -0
- StdHep/src/tree.cc StdHep/src/tree.cc +38 -0
- StdHep/src/writeEventKey.cc StdHep/src/writeEventKey.cc +39 -0
- StdHep/src/writeRunInfo.cc StdHep/src/writeRunInfo.cc +56 -0
- StdHep/src/writeStdComment.cc StdHep/src/writeStdComment.cc +25 -0
- Units/.cvsignore Units/.cvsignore +5 -0
- Units/INSTALL Units/INSTALL +61 -0
- Units/Makefile.am Units/Makefile.am +60 -0
- Units/Units/.cvsignore Units/Units/.cvsignore +2 -0
- Units/Units/Makefile.am Units/Units/Makefile.am +11 -0
- Units/Units/PhysicalConstants.h Units/Units/PhysicalConstants.h +143 -0
- Units/Units/SystemOfUnits.h Units/Units/SystemOfUnits.h +286 -0
- Units/autotools/.cvsignore Units/autotools/.cvsignore +6 -0
- Units/autotools/ltmain.sh Units/autotools/ltmain.sh +6290 -0
- Units/bootstrap Units/bootstrap +10 -0
- Units/configure.in Units/configure.in +207 -0
- Units/doc/.cvsignore Units/doc/.cvsignore +1 -0
- Units/doc/Makefile.am Units/doc/Makefile.am +24 -0
- Units/doc/Units.tex Units/doc/Units.tex +178 -0
- Units/test/.cvsignore Units/test/.cvsignore +1 -0
- Units/test/Makefile.am Units/test/Makefile.am +27 -0
- Units/test/testUnits.cc Units/test/testUnits.cc +27 -0
- Units/test/testUnits.output Units/test/testUnits.output +1 -0
- Units/test/testUnits.sh.in Units/test/testUnits.sh.in +6 -0
- Utilities/.cvsignore Utilities/.cvsignore +5 -0
- Utilities/INSTALL Utilities/INSTALL +61 -0
- Utilities/Makefile.am Utilities/Makefile.am +12 -0
- Utilities/Utilities/.cvsignore Utilities/Utilities/.cvsignore +2 -0
- Utilities/Utilities/CLHEP.h Utilities/Utilities/CLHEP.h +6 -0
- Utilities/Utilities/Makefile.am Utilities/Utilities/Makefile.am +10 -0
- Utilities/Utilities/fortran.h Utilities/Utilities/fortran.h +134 -0
- Utilities/autotools/.cvsignore Utilities/autotools/.cvsignore +6 -0
- Utilities/autotools/ltmain.sh Utilities/autotools/ltmain.sh +6290 -0
- Utilities/bootstrap Utilities/bootstrap +10 -0
- Utilities/configure.in Utilities/configure.in +201 -0
- Vector/.cvsignore Vector/.cvsignore +5 -0
- Vector/INSTALL Vector/INSTALL +61 -0
- Vector/Makefile.am Vector/Makefile.am +62 -0
- Vector/Vector-config.in Vector/Vector-config.in +90 -0
- Vector/Vector-deps.in Vector/Vector-deps.in +1 -0
- Vector/Vector/.cvsignore Vector/Vector/.cvsignore +2 -0
- Vector/Vector/AxisAngle.h Vector/Vector/AxisAngle.h +122 -0
- Vector/Vector/AxisAngle.icc Vector/Vector/AxisAngle.icc +119 -0
- Vector/Vector/Boost.h Vector/Vector/Boost.h +253 -0
- Vector/Vector/Boost.icc Vector/Vector/Boost.icc +289 -0
- Vector/Vector/BoostX.h Vector/Vector/BoostX.h +227 -0
- Vector/Vector/BoostX.icc Vector/Vector/BoostX.icc +200 -0
- Vector/Vector/BoostY.h Vector/Vector/BoostY.h +228 -0
- Vector/Vector/BoostY.icc Vector/Vector/BoostY.icc +200 -0
- Vector/Vector/BoostZ.h Vector/Vector/BoostZ.h +227 -0
- Vector/Vector/BoostZ.icc Vector/Vector/BoostZ.icc +199 -0
- Vector/Vector/EulerAngles.h Vector/Vector/EulerAngles.h +120 -0
- Vector/Vector/EulerAngles.icc Vector/Vector/EulerAngles.icc +125 -0
- Vector/Vector/LorentzRotation.h Vector/Vector/LorentzRotation.h +388 -0
- Vector/Vector/LorentzRotation.icc Vector/Vector/LorentzRotation.icc +380 -0
- Vector/Vector/LorentzVector.h Vector/Vector/LorentzVector.h +580 -0
- Vector/Vector/LorentzVector.icc Vector/Vector/LorentzVector.icc +432 -0
- Vector/Vector/Makefile.am Vector/Vector/Makefile.am +41 -0
- Vector/Vector/Rotation.h Vector/Vector/Rotation.h +423 -0
- Vector/Vector/Rotation.icc Vector/Vector/Rotation.icc +348 -0
- Vector/Vector/RotationInterfaces.h Vector/Vector/RotationInterfaces.h +408 -0
- Vector/Vector/RotationInterfaces.icc Vector/Vector/RotationInterfaces.icc +153 -0
- Vector/Vector/RotationX.h Vector/Vector/RotationX.h +290 -0
- Vector/Vector/RotationX.icc Vector/Vector/RotationX.icc +208 -0
- Vector/Vector/RotationY.h Vector/Vector/RotationY.h +291 -0
- Vector/Vector/RotationY.icc Vector/Vector/RotationY.icc +209 -0
- Vector/Vector/RotationZ.h Vector/Vector/RotationZ.h +293 -0
- Vector/Vector/RotationZ.icc Vector/Vector/RotationZ.icc +208 -0
- Vector/Vector/Sqr.h Vector/Vector/Sqr.h +26 -0
- Vector/Vector/ThreeVector.h Vector/Vector/ThreeVector.h +452 -0
- Vector/Vector/ThreeVector.icc Vector/Vector/ThreeVector.icc +286 -0
- Vector/Vector/TwoVector.h Vector/Vector/TwoVector.h +222 -0
- Vector/Vector/TwoVector.icc Vector/Vector/TwoVector.icc +171 -0
- Vector/Vector/ZMxpv.h Vector/Vector/ZMxpv.h +234 -0
- Vector/autotools/.cvsignore Vector/autotools/.cvsignore +6 -0
- Vector/autotools/ltmain.sh Vector/autotools/ltmain.sh +6290 -0
- Vector/bootstrap Vector/bootstrap +10 -0
- Vector/configure.in Vector/configure.in +215 -0
- Vector/doc/.cvsignore Vector/doc/.cvsignore +1 -0
- Vector/doc/Makefile.am Vector/doc/Makefile.am +29 -0
- Vector/doc/VectorDefs.tex Vector/doc/VectorDefs.tex +3626 -0
- Vector/doc/eulerAngleComputation.tex Vector/doc/eulerAngleComputation.tex +403 -0
- Vector/doc/keyMergeIssues.doc Vector/doc/keyMergeIssues.doc +481 -0
- Vector/doc/merge-details.doc Vector/doc/merge-details.doc +823 -0
- Vector/doc/minorMergeIssues.doc Vector/doc/minorMergeIssues.doc +463 -0
- Vector/src/.cvsignore Vector/src/.cvsignore +1 -0
- Vector/src/AxisAngle.cc Vector/src/AxisAngle.cc +106 -0
- Vector/src/Boost.cc Vector/src/Boost.cc +260 -0
- Vector/src/BoostX.cc Vector/src/BoostX.cc +152 -0
- Vector/src/BoostY.cc Vector/src/BoostY.cc +151 -0
- Vector/src/BoostZ.cc Vector/src/BoostZ.cc +151 -0
- Vector/src/EulerAngles.cc Vector/src/EulerAngles.cc +121 -0
- Vector/src/LorentzRotation.cc Vector/src/LorentzRotation.cc +293 -0
- Vector/src/LorentzRotationC.cc Vector/src/LorentzRotationC.cc +210 -0
- Vector/src/LorentzRotationD.cc Vector/src/LorentzRotationD.cc +212 -0
- Vector/src/LorentzVector.cc Vector/src/LorentzVector.cc +251 -0
- Vector/src/LorentzVectorB.cc Vector/src/LorentzVectorB.cc +83 -0
- Vector/src/LorentzVectorC.cc Vector/src/LorentzVectorC.cc +257 -0
- Vector/src/LorentzVectorK.cc Vector/src/LorentzVectorK.cc +237 -0
- Vector/src/LorentzVectorL.cc Vector/src/LorentzVectorL.cc +31 -0
- Vector/src/LorentzVectorR.cc Vector/src/LorentzVectorR.cc +75 -0
- Vector/src/Makefile.am Vector/src/Makefile.am +45 -0
- Vector/src/Rotation.cc Vector/src/Rotation.cc +198 -0
- Vector/src/RotationA.cc Vector/src/RotationA.cc +120 -0
- Vector/src/RotationC.cc Vector/src/RotationC.cc +208 -0
- Vector/src/RotationE.cc Vector/src/RotationE.cc +283 -0
- Vector/src/RotationIO.cc Vector/src/RotationIO.cc +39 -0
- Vector/src/RotationInterfaces.cc Vector/src/RotationInterfaces.cc +41 -0
- Vector/src/RotationL.cc Vector/src/RotationL.cc +63 -0
- Vector/src/RotationP.cc Vector/src/RotationP.cc +57 -0
- Vector/src/RotationX.cc Vector/src/RotationX.cc +199 -0
- Vector/src/RotationXYZ.cc Vector/src/RotationXYZ.cc +37 -0
- Vector/src/RotationY.cc Vector/src/RotationY.cc +189 -0
- Vector/src/RotationZ.cc Vector/src/RotationZ.cc +178 -0
- Vector/src/SpaceVector.cc Vector/src/SpaceVector.cc +310 -0
- Vector/src/SpaceVectorD.cc Vector/src/SpaceVectorD.cc +78 -0
- Vector/src/SpaceVectorP.cc Vector/src/SpaceVectorP.cc +158 -0
- Vector/src/SpaceVectorR.cc Vector/src/SpaceVectorR.cc +169 -0
- Vector/src/ThreeVector.cc Vector/src/ThreeVector.cc +359 -0
- Vector/src/ThreeVectorR.cc Vector/src/ThreeVectorR.cc +36 -0
- Vector/src/TwoVector.cc Vector/src/TwoVector.cc +187 -0
- Vector/src/ZMinput.cc Vector/src/ZMinput.cc +330 -0
- Vector/src/ZMxpv.cc Vector/src/ZMxpv.cc +190 -0
- Vector/test/.cvsignore Vector/test/.cvsignore +1 -0
- Vector/test/Makefile.am Vector/test/Makefile.am +32 -0
- Vector/test/eulerProb.cc Vector/test/eulerProb.cc +59 -0
- Vector/test/eulerTest.cc Vector/test/eulerTest.cc +209 -0
- Vector/test/testLorentzVector.cc Vector/test/testLorentzVector.cc +240 -0
- Vector/test/testLorentzVector.input Vector/test/testLorentzVector.input +2 -0
- Vector/test/testLorentzVector.output Vector/test/testLorentzVector.output +2 -0
- Vector/test/testRotation.cc Vector/test/testRotation.cc +208 -0
- Vector/test/testRotation.sh.in Vector/test/testRotation.sh.in +5 -0
- Vector/test/testSubscripts.cc Vector/test/testSubscripts.cc +111 -0
- Vector/test/testSubscripts.sh.in Vector/test/testSubscripts.sh.in +5 -0
- Vector/test/testThreeVector.cc Vector/test/testThreeVector.cc +265 -0
- Vector/test/testThreeVector.input Vector/test/testThreeVector.input +2 -0
- Vector/test/testThreeVector.output Vector/test/testThreeVector.output +2 -0
- bootstrap bootstrap +24 -0
- build-clheplib.in build-clheplib.in +142 -0
- compilers.txt compilers.txt +44 -0
- configure.in configure.in +124 -0
- getObjectList getObjectList +17 -0
- makeBinaryTar.in makeBinaryTar.in +41 -0
- makeSourceDist.in makeSourceDist.in +39 -0
- No files found.
.cvsignore
0 → 100755
ChangeLog
0 → 100755
This diff is collapsed.
Evaluator/.cvsignore
0 → 100755
Evaluator/Evaluator-deps.in
0 → 100755