Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members  

AlephCollection.cpp

Go to the documentation of this file.
00001 
00002 //
00003 // Implementation of Class AlephCollection
00004 //
00005 // Author: Dan Wallin (with contributions from M. Hoerndl)
00006 // modified by:  C. Delaere, V. Lemaitre, O. van der Aa :
00007 //                 - added Pointers method
00008 //                 - added Leptons filter algos
00009 //                 - added GetSum and GetMiss
00010 //                 - new Jet Algos (form Orca)
00011 //
00013 
00014 #include "AlephCollection.h"
00015 
00016 float  max(float  i, float j)  { return i > j ? i : j; }
00017 float  max(double i, float j)  { return i > j ? i : j; }
00018 double max(double i, double j) { return i > j ? i : j; }
00019 float  min(float  i, float j)  { return i < j ? i : j; }
00020 float  min(double i, float j)  { return i < j ? i : j; }
00021 double min(double i, double j) { return i < j ? i : j; }
00022 float  max(float  i, double j) { return i > j ? i : j; }
00023 float  min(float  i, double j) { return i < j ? i : j; }
00024 

Generated at Wed Jun 18 17:19:09 2003 for ALPHA++ by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001