/usr/include/ThePEG/Interface/ClassDocumentation.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 | // -*- C++ -*-
//
// ClassDocumentation.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_ClassDocumentation_H
#define ThePEG_ClassDocumentation_H
// This is the declaration of the ClassDocumentation class.
#include "ThePEG/Config/ThePEG.h"
#include "ClassDocumentation.fh"
namespace ThePEG {
/**
* The ClassDocumentationBase class is used to communicate
* documetation about an Interfaced class to the Repository.
* Similarly to classes inheriting from InterfaceBase, only one static
* object of the templated ClassDocumentation, which inherits from
* ClassDocumentationBase, should be created for each Interfaced
* class. This object will then automatically register itself with the
* static Repository.
*
* The ClassDocumentationBase contains three strings with information
* which are all specified in the constructor:
*
* The <i>documentation</i> contains a brief description of the
* corresponding class which can be displayed by the Repository (or
* user interfaces derived from it).
*
* The <i>model description</i> contains a very brief description of
* the model of the process implemented in the step handler, given in
* the form of a LaTeX \\item. This is written to a file after a run
* by an EventGenerator.
*
* The <i>model references</i> contains possible LaTeX \\bibitems
* corresponding to \\cite commands in the <i>model
* description</i>. This is also written to a file after a run by an
* EventGenerator.
*
* @see Interfaced
* @see Repository
*
*/
class ClassDocumentationBase {
protected:
/**
* The standard constructor can only be used from subclasses.
* @param newDocumentation the <i>documentation</i> for the
* corresponding class.
* @param newModelDescription the <i>model description</i> for the
* corresponding class.
* @param newModelReferences the <i>model references</i> of the
* corresponding class..
* @param newTypeInfo the type_info object of the corresponding
* class.
*/
ClassDocumentationBase(string newDocumentation,
string newModelDescription,
string newModelReferences,
const type_info & newTypeInfo);
public:
/**
* The destructor.
*/
virtual ~ClassDocumentationBase() {}
public:
/**
* Return the brief <i>documentation</i> of the corresponding class.
*/
string documentation() const { return theDocumentation; }
/**
* Return the <i>model description</i> of the corresponding class.
*/
string modelDescription() const { return theModelDescription; }
/**
* Return the <i>model references</i> of the corresponding class.
*/
string modelReferences() const { return theModelReferences; }
private:
/**
* The brief <i>documentation</i> of the corresponding class.
*/
string theDocumentation;
/**
* The <i>model description</i> of the corresponding class.
*/
string theModelDescription;
/**
* The <i>model references</i> of the corresponding class.
*/
string theModelReferences;
private:
/**
* Private and unimplemented default constructor.
*/
ClassDocumentationBase();
/**
* Private and unimplemented copy constructor.
*/
ClassDocumentationBase(const ClassDocumentationBase &);
/**
* Private and unimplemented assignment operator.
*/
ClassDocumentationBase & operator=(const ClassDocumentationBase &);
};
/**
* The <code>ClassDocumentation</code> class is used to communicate
* documetation about an Interfaced class to the Repository.
* Similarly to classes inheriting from InterfaceBase, only one static
* object of the templated ClassDocumentation, which inherits from
* ClassDocumentationBase, should be created for each Interfaced
* class. This object will then automatically register itself with
* the static Repository.
*
* The ClassDocumentation should in the constructor specify three
* strings with information:
*
* The <i>documentation</i> contains a brief description of the
* corresponding class which can be displayed by the Repository (or
* user interfaces derived from it).
*
* The <i>model description</i> contains a very brief description of
* the model of the process implemented in the step handler, given in
* the form of a LaTeX \\item. This is written to a file after a run
* by an EventGenerator.
*
* The <i>model references</i> contains possible LaTeX \\bibitems
* corresponding to \\cite commands in the <i>model
* description</i>. This is also written to a file after a run by an
* EventGenerator.
*
* @see Interfaced
* @see Repository
*
*/
template <typename T>
class ClassDocumentation: public ClassDocumentationBase {
public:
/**
* The standard constructor. All other constructors are private.
* @param newDocumentation the <i>documentation</i> for the
* corresponding class.
* @param newModelDescription the <i>model description</i> for the
* corresponding class.
* @param newModelReferences the <i>model references</i> of the
* corresponding class..
*/
ClassDocumentation(string newDocumentation,
string newModelDescription = "",
string newModelReferences = "")
: ClassDocumentationBase(newDocumentation, newModelDescription,
newModelReferences, typeid(T)) {}
private:
/**
* Private and unimplemented default constructor.
*/
ClassDocumentation();
/**
* Private and unimplemented copy constructor.
*/
ClassDocumentation(const ClassDocumentation &);
/**
* Private and unimplemented assignment operator.
*/
ClassDocumentation & operator=(const ClassDocumentation &);
};
}
#endif /* ThePEG_ClassDocumentation_H */
|