X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=FMD%2FAliFMDv0.h;h=0e0c0a53bd5ce1cb87143b062d5d989b77e5b4eb;hb=133390aca2ec411cbdfc9e7d7ff0b7ddad6c2fcc;hp=f29ad5565eb38eb95416b2f1f33290eebe2cd6ef;hpb=1a1fdef7df14ded810885ec1c2da3dc3d7d1100c;p=u%2Fmrichter%2FAliRoot.git diff --git a/FMD/AliFMDv0.h b/FMD/AliFMDv0.h index f29ad5565eb..0e0c0a53bd5 100644 --- a/FMD/AliFMDv0.h +++ b/FMD/AliFMDv0.h @@ -7,7 +7,12 @@ * * See cxx source for full Copyright notice */ - +/** @file AliFMDv0.h + @author Christian Holm Christensen + @date Mon Mar 27 12:48:51 2006 + @brief Concrete implementation of FMD detector driver - coarse + version +*/ //____________________________________________________________________ // // Manager class for the FMD - Coarse version. @@ -17,18 +22,36 @@ #endif //____________________________________________________________________ +/** @brief Forward Multiplicity Detector based on Silicon wafers. + + This class contains the base procedures for the Forward + Multiplicity detector Detector consists of 3 sub-detectors FMD1, + FMD2, and FMD3, each of which has 1 or 2 rings of silicon sensors. + + This contains the coarse version of the FMD - that is, the + simulation produces no hits in the FMD volumes, and the sensors + are not divided into strips and sectors. Useful for material + budget calculations + @ingroup FMD_sim + */ class AliFMDv0 : public AliFMD { public: + /** CTOR */ AliFMDv0() {} + /** CTOR + @param name Name + @param title Title */ AliFMDv0(const char *name, const char *title="Coarse geometry") : AliFMD(name, title) {} - virtual ~AliFMDv0() - {} + /** DTOR */ + virtual ~AliFMDv0() {} // Required member functions + /** @return Version number - always 0 */ virtual Int_t IsVersion() const {return 0;} + /** Function called at each hit. Empty */ virtual void StepManager() {} ClassDef(AliFMDv0,1) // Coarse FMD geometry