Rivet.hh

Go to the documentation of this file.
00001 #ifndef RIVET_Rivet_HH
00002 #define RIVET_Rivet_HH
00003 
00004 #include "Rivet/Config/RivetConfig.hh"
00005 #include "Rivet/Config/BuildOptions.hh"
00006 
00007 #include <typeinfo>
00008 #include <set>
00009 #include <list>
00010 #include <map>
00011 #include <utility>
00012 #include <string>
00013 #include <sstream>
00014 #include <vector>
00015 #include <stdexcept>
00016 #include <iostream>
00017 #include <iomanip>
00018 #include <cmath>
00019 #include <limits>
00020 #include <cassert>
00021 #include <fstream>
00022 
00023 
00024 // Macro to help with overzealous compiler warnings
00025 #ifdef UNUSED
00026 #elif defined(__GNUC__)
00027 # define UNUSED(x) UNUSED_ ## x __attribute__((unused))
00028 #elif defined(__LCLINT__)
00029 # define UNUSED(x) /*@unused@*/ x
00030 #else
00031 # define UNUSED(x) x
00032 #endif
00033 
00034 
00035 namespace Rivet {
00036 
00037   // Convenient imports of common STL classes and functions.
00038   using std::set;
00039   using std::map;
00040   using std::multimap;
00041   using std::type_info;
00042   using std::string;
00043   using std::stringstream;
00044   using std::less;
00045   using std::list;
00046   using std::vector;
00047   using std::pair;
00048   using std::make_pair;
00049   using std::runtime_error;
00050   using std::min;
00051   using std::max;
00052   using std::numeric_limits;
00053   using std::ostream;
00054   using std::istream;
00055   using std::cout;
00056   using std::cin;
00057   using std::cerr;
00058   using std::setw;
00059   using std::endl;
00060 
00061   /// A sensible default maximum value of rapidity for Rivet analyses to use.
00062   static const double MAXRAPIDITY = 100000.0;
00063   /// @deprecated
00064   static const double MaxRapidity = 100000.0;
00065 
00066   /// A function to get the Rivet version string
00067   string version();
00068 
00069 }
00070 
00071 
00072 // AIDA headers
00073 #include "Rivet/RivetAIDA.fhh"
00074 
00075 // HepMC headers and helper functions
00076 #include "Rivet/RivetHepMC.hh"
00077 
00078 // Now import some Rivet classes
00079 #include "Rivet/Exceptions.hh"
00080 #include "Rivet/Math/MathUtils.hh"
00081 #include "Rivet/Math/Vectors.hh"
00082 #include "Rivet/Math/Matrices.hh"
00083 #include "Rivet/Math/Units.hh"
00084 #include "Rivet/Tools/Utils.hh"
00085 #include "Rivet/Particle.hh"
00086 #include "Rivet/ParticleName.hh"
00087 
00088 
00089 namespace Rivet {
00090 
00091 
00092   /// Convenient function for streaming out vectors of any streamable object.
00093   template<typename T>
00094   inline std::ostream& operator<<(std::ostream& os, const std::vector<T>& vec) {
00095     os << "[ ";
00096     for (size_t i=0; i<vec.size(); ++i) {
00097       os << vec[i] << " ";
00098     }
00099     os << "]";
00100     return os;
00101   }
00102 
00103 
00104   /// Convenient function for streaming out lists of any streamable object.
00105   template<typename T>
00106   inline std::ostream& operator<<(std::ostream& os, const std::list<T>& vec) {
00107     os << "[ ";
00108     for (size_t i=0; i<vec.size(); ++i) {
00109       os << vec[i] << " ";
00110     }
00111     os << "]";
00112     return os;
00113   }
00114 
00115 
00116 }
00117 
00118 #endif