/usr/include/ThePEG/Utilities/ClassTraits.h is in libthepeg-dev 1.8.0-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 | // -*- C++ -*-
//
// ClassTraits.h is a part of ThePEG - Toolkit for HEP Event Generation
// Copyright (C) 1999-2011 Leif Lonnblad
//
// ThePEG is licenced under version 2 of the GPL, see COPYING for details.
// Please respect the MCnet academic guidelines, see GUIDELINES for details.
//
#ifndef ThePEG_ClassTraits_H
#define ThePEG_ClassTraits_H
// This is the declaration of the ClassTraitsBase, ClassTraits and
// BaseClassTraits classes.
#include "ThePEG/Config/ThePEG.h"
// #include "ClassTraits.fh"
// #include "ClassTraits.xh"
#include "ThePEG/Persistency/PersistentOStream.fh"
#include "ThePEG/Persistency/PersistentIStream.fh"
#include "DescriptionList.h"
namespace ThePEG {
/**
* ClassTraitsType is an empty, non-polymorphic, base class. It is
* used as a base class of all class traits classes in order to group
* them together in the documentation. It currently serves no other
* purpose.
*/
struct ClassTraitsType: public TraitsType {};
/**
* The templated ClassTraitsBase class defines a set of default
* information about classes used by ThePEG. By default, the
* ClassTraits simply inherits from ClassTraitsBase, but it can be
* specialized to override the static member functions.
*
* The information that should be made available is:<BR>
* <code>create()</code> creates an object of the described class,<BR>
* <code>className()</code> returns the platform-independent name of
* the class,<BR> <code>version()</code> return the version
* number,<BR> <code>output()</code> output the members of the class
* to a PersistentOStream,<BR> <code>input()</code> reads the members
* of the class from a PersistentIStream and<BR> <code>cast()</code>
* dynamically cast a pointer to a public base class to a pointer to
* the class.
*
* @see PersistentOStream
* @see PersistentIStream
*/
template <typename T>
struct ClassTraitsBase: public ClassTraitsType {
ThePEG_DECLARE_TEMPLATE_POINTERS(T,TPtr);
ThePEG_DECLARE_POINTERS(Base,BPtr);
/**
* Create a T object and return a smart pointer to it.
*/
static TPtr create() { return TPtr::Create(); }
/**
* Return the name of class T.
*/
// static string className() { return T::className(); }
static string className() {
return DescriptionList::className(typeid(T));
}
/**
* Return the version of class T
*/
static int version() {
return DescriptionList::version(typeid(T));
}
/**
* The name of a file containing the dynamic library where the class
* T is implemented. It may also include several, space separated,
* libraries if the class T depends on other classes (base classes
* excepted). In this case the listed libraries will be dynamically
* linked in the order they are specified.
*/
static string library() {
return DescriptionList::library(typeid(T));
}
/**
* Write the T part of an object to a persistent stream.
*/
static void output(tcTPtr t, PersistentOStream & os) {
t->persistentOutput(os);
}
/**
* Read the T part of an object from a persistent stream.
*/
static void input(tTPtr t, PersistentIStream & is, int oldVersion) {
t->persistentInput(is, oldVersion);
}
/**
* Perform a dynamic cast from the given pointer to a pointer to T.
*/
static TPtr cast(BPtr b) { return dynamic_ptr_cast<TPtr>(b); }
/**
* Perform a dynamic cast from the given const pointer to a pointer
* to const T.
*/
static cTPtr cast(cBPtr b) { return dynamic_ptr_cast<cTPtr>(b); }
/**
* Perform a dynamic cast from the given transient pointer to a
* transient pointer to T.
*/
static tTPtr cast(tBPtr b) { return dynamic_ptr_cast<tTPtr>(b); }
/**
* Perform a dynamic cast from the given transient const pointer to
* a transient pointer to const T.
*/
static tcTPtr cast(tcBPtr b) { return dynamic_ptr_cast<tcTPtr>(b); }
};
/**
* The default concrete implementation of ClassTraitsBase. This
* templated class may be specialized for any class if the default
* implementation is not sufficient.
*/
template <typename T>
struct ClassTraits: public ClassTraitsBase<T> {};
/**
* ClassTraits specialization for double
*/
template<>
struct ClassTraits<double> : public ClassTraitsBase<double> {
static string className() { return "double"; }
};
/**
* BaseClassTraits describes the base classes of the templated class.
* BaseClassTraits should be specialized once for each
* base class of a class to be described. The specializations should
* contain a typedef so that
* <code>BaseClassTraits<T>::NthBase</code> is made an alias for
* the first base class of <code>T</code>,
* <code>BaseClassTraits<T>::NthBase</code> the second base
* class and so on. The typedef defaults to <code>int</code> which means
* no base class.
*/
template <typename Derived, int BaseN>
struct BaseClassTrait: public ClassTraitsType {
/**
* The type of the <code>BaseN</code>'th base class (int means there
* are no further base classes).
*/
typedef int NthBase;
};
}
#define ThePEG_DECLARE_BASE_CLASS_TRAITS_1(Class,Base) \
/** This template specialization informs ThePEG about the \
* base classes of Class. */ \
template <> \
struct BaseClassTrait<Class,1>: public ClassTraitsType { \
/** Typedef of the first base class of Class. */ \
typedef Base NthBase; \
}; \
#define ThePEG_DECLARE_BASE_CLASS_TRAITS_2(Class,Base1,Base2) \
/** This template specialization informs ThePEG about the \
* base classes of Class. */ \
template <> \
struct BaseClassTrait<Class,1>: public ClassTraitsType { \
/** Typedef of the first base class of Class. */ \
typedef Base1 NthBase; \
}; \
/** This template specialization informs ThePEG about the \
* base classes of Class. */ \
template <> \
struct BaseClassTrait<Class,2>: public ClassTraitsType { \
/** Typedef of the second base class of Class. */ \
typedef Base2 NthBase; \
}; \
#define ThePEG_DECLARE_NAMED_DYNAMIC_CLASS_TRAITS_(Class,Name,Lib) \
/** This template specialization informs ThePEG about the name of \
* the Class class and the shared object where it is defined. */ \
template <> \
struct ClassTraits<Class>: \
public ClassTraitsBase<Class> { \
/** Return a platform-independent class name */ \
static string className() { return Name; } \
/** \
* The name of a file containing the dynamic library where the class \
* T is implemented. It may also include several, space separated, \
* libraries if the class T depends on other classes (base classes \
* excepted). In this case the listed libraries will be dynamically \
* linked in the order they are specified. \
*/ \
static string library() { return Lib; } \
} \
#define ThePEG_DECLARE_CLASS_TRAITS(Class,Base) \
ThePEG_DECLARE_BASE_CLASS_TRAITS_1(Class,Base) \
ThePEG_DECLARE_NAMED_DYNAMIC_CLASS_TRAITS_(Class,"ThePEG::" #Class,"") \
#define ThePEG_DECLARE_DYNAMIC_CLASS_TRAITS(Class,Base,Lib) \
ThePEG_DECLARE_BASE_CLASS_TRAITS_1(Class,Base) \
ThePEG_DECLARE_NAMED_DYNAMIC_CLASS_TRAITS_(Class,"ThePEG::" #Class,Lib) \
#define ThePEG_DECLARE_CLASS_TRAITS_2(Class,Base1,Base2) \
ThePEG_DECLARE_BASE_CLASS_TRAITS_2(Class,Base1,Base2) \
ThePEG_DECLARE_NAMED_DYNAMIC_CLASS_TRAITS_(Class,"ThePEG/::" #Class,"") \
#define ThePEG_DECLARE_DYNAMIC_CLASS_TRAITS_2(Class,Base1,Base2,Lib) \
ThePEG_DECLARE_BASE_CLASS_TRAITS_2(Class,Base1,Base2) \
ThePEG_DECLARE_NAMED_DYNAMIC_CLASS_TRAITS_(Class,"ThePEG::" #Class,Lib) \
#define ThePEG_DECLARE_NAMED_CLASS_TRAITS(Class,Base,Name) \
ThePEG_DECLARE_BASE_CLASS_TRAITS_1(Class,Base) \
ThePEG_DECLARE_NAMED_DYNAMIC_CLASS_TRAITS_(Class,Name,"") \
#define ThePEG_DECLARE_NAMED_DYNAMIC_CLASS_TRAITS(Class,Base,Name,Lib) \
ThePEG_DECLARE_BASE_CLASS_TRAITS_1(Class,Base) \
ThePEG_DECLARE_NAMED_DYNAMIC_CLASS_TRAITS_(Class,Name,Lib) \
#define ThePEG_DECLARE_NAMED_CLASS_TRAITS_2(Class,Base1,Base2,Name) \
ThePEG_DECLARE_BASE_CLASS_TRAITS_2(Class,Base1,Base2) \
ThePEG_DECLARE_NAMED_DYNAMIC_CLASS_TRAITS_(Class,Name,"") \
#endif /* ThePEG_ClassTraits_H */
|