From: ivana Date: Wed, 24 May 2006 15:00:01 +0000 (+0000) Subject: Updated comments for Doxygen - corrected warnings X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=139856523defd6c842e24ef6640d45886e722bef Updated comments for Doxygen - corrected warnings --- diff --git a/MUON/AliMUON.cxx b/MUON/AliMUON.cxx index 4df500651d4..e2d65a57675 100644 --- a/MUON/AliMUON.cxx +++ b/MUON/AliMUON.cxx @@ -93,7 +93,9 @@ // according to (Z1 = zch) and (Z2 = zch + DTPLANES) // for the first and second chambers in the station, respectively -ClassImp(AliMUON) +/// \cond CLASSIMP +ClassImp(AliMUON) +/// \endcond //__________________________________________________________________ AliMUON::AliMUON() diff --git a/MUON/AliMUONBlockHeader.cxx b/MUON/AliMUONBlockHeader.cxx index b519358929e..011af30b364 100644 --- a/MUON/AliMUONBlockHeader.cxx +++ b/MUON/AliMUONBlockHeader.cxx @@ -12,11 +12,12 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ + +/* $Id$ */ #include "AliMUONBlockHeader.h" #include "AliMUONDspHeader.h" - /// /// Block structure for tracker raw data /// each DDL contains two blocks, @@ -25,9 +26,11 @@ /// the header of the block contains the front end DSP id, trigger words and paddind word /// +/// \cond CLASSIMP ClassImp(AliMUONBlockHeader) +/// \endcond - const Int_t AliMUONBlockHeader::fgkHeaderLength = 7; +const Int_t AliMUONBlockHeader::fgkHeaderLength = 7; //___________________________________________ AliMUONBlockHeader::AliMUONBlockHeader() diff --git a/MUON/AliMUONBusStruct.cxx b/MUON/AliMUONBusStruct.cxx index 6198bd4f30d..2794c1e81dd 100644 --- a/MUON/AliMUONBusStruct.cxx +++ b/MUON/AliMUONBusStruct.cxx @@ -12,6 +12,8 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ + +/* $Id$ */ #include "AliMUONBusStruct.h" #include "AliLog.h" @@ -26,10 +28,11 @@ /// 12 bits for charge) /// - +/// \cond CLASSIMP ClassImp(AliMUONBusStruct) +/// \endcond - const Int_t AliMUONBusStruct::fgkHeaderLength = 4; +const Int_t AliMUONBusStruct::fgkHeaderLength = 4; //___________________________________________ AliMUONBusStruct::AliMUONBusStruct() diff --git a/MUON/AliMUONChamberTrigger.cxx b/MUON/AliMUONChamberTrigger.cxx index 2160d89e5cd..23208628c97 100644 --- a/MUON/AliMUONChamberTrigger.cxx +++ b/MUON/AliMUONChamberTrigger.cxx @@ -24,8 +24,6 @@ #include "AliMUONGeometryTransformer.h" #include "AliLog.h" -ClassImp(AliMUONChamberTrigger) - /// /// \class AliMUONChamberTrigger /// @@ -34,6 +32,10 @@ ClassImp(AliMUONChamberTrigger) /// This class is to be deprecated. /// +/// \cond CLASSIMP +ClassImp(AliMUONChamberTrigger) +/// \endcond + //------------------------------------------- AliMUONChamberTrigger::AliMUONChamberTrigger() diff --git a/MUON/AliMUONClusterFinderAZ.cxx b/MUON/AliMUONClusterFinderAZ.cxx index 51b7b17add7..5f28e4fe129 100644 --- a/MUON/AliMUONClusterFinderAZ.cxx +++ b/MUON/AliMUONClusterFinderAZ.cxx @@ -40,7 +40,9 @@ #include "AliMUONMathieson.h" #include "AliLog.h" +/// \cond CLASSIMP ClassImp(AliMUONClusterFinderAZ) +/// \endcond const Double_t AliMUONClusterFinderAZ::fgkCouplMin = 1.e-3; // threshold on coupling const Double_t AliMUONClusterFinderAZ::fgkZeroSuppression = 6; // average zero suppression value @@ -2426,7 +2428,7 @@ void AliMUONClusterFinderAZ::FlagLocalMax(TH2D *hist, Int_t i, Int_t j, Int_t *i //_____________________________________________________________________________ void AliMUONClusterFinderAZ::FindCluster(Int_t *localMax, Int_t iMax) { -/// Find pixel cluster around local maximum #iMax and pick up pads +/// Find pixel cluster around local maximum \a iMax and pick up pads /// overlapping with it TH2D *hist = (TH2D*) gROOT->FindObject("anode"); diff --git a/MUON/AliMUONDDLTracker.cxx b/MUON/AliMUONDDLTracker.cxx index 960d8983c12..7c427ecd761 100644 --- a/MUON/AliMUONDDLTracker.cxx +++ b/MUON/AliMUONDDLTracker.cxx @@ -12,15 +12,14 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ - + + /* $Id$ */ + #include "AliMUONDDLTracker.h" #include "AliMUONBusStruct.h" #include "AliMUONDspHeader.h" #include "AliMUONBlockHeader.h" -ClassImp(AliMUONDDLTracker) - - /// /// \class AliMUONDDLTracker /// @@ -28,6 +27,9 @@ ClassImp(AliMUONDDLTracker) /// /// \author C. Finck +/// \cond CLASSIMP +ClassImp(AliMUONDDLTracker) +/// \endcond //___________________________________________ AliMUONDDLTracker::AliMUONDDLTracker() diff --git a/MUON/AliMUONDDLTracker.h b/MUON/AliMUONDDLTracker.h index 5b44f1cedc5..0df22d33a7d 100644 --- a/MUON/AliMUONDDLTracker.h +++ b/MUON/AliMUONDDLTracker.h @@ -9,7 +9,7 @@ /// \class AliMUONDDLTracker /// \brief MUON DDL tracker /// -/// \author Christian Finck +// Author Christian Finck #include #include diff --git a/MUON/AliMUONDDLTrigger.cxx b/MUON/AliMUONDDLTrigger.cxx index 34fcbbdec1a..ef040300a92 100644 --- a/MUON/AliMUONDDLTrigger.cxx +++ b/MUON/AliMUONDDLTrigger.cxx @@ -12,14 +12,14 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ + +/* $Id$ */ #include "AliMUONDDLTrigger.h" #include "AliMUONLocalStruct.h" #include "AliMUONRegHeader.h" #include "AliMUONDarcHeader.h" -ClassImp(AliMUONDDLTrigger) - /// /// \class AliMUONDDLTrigger /// @@ -28,6 +28,9 @@ ClassImp(AliMUONDDLTrigger) /// \author C. Finck /// +/// \cond CLASSIMP +ClassImp(AliMUONDDLTrigger) +/// \endcond //___________________________________________ AliMUONDDLTrigger::AliMUONDDLTrigger() diff --git a/MUON/AliMUONDDLTrigger.h b/MUON/AliMUONDDLTrigger.h index e7e80c47442..ca0c14c93de 100644 --- a/MUON/AliMUONDDLTrigger.h +++ b/MUON/AliMUONDDLTrigger.h @@ -9,7 +9,7 @@ /// \class AliMUONDDLTrigger /// \brief MUON DDL Trigger /// -/// \author Christian Finck +// Author Christian Finck #include #include diff --git a/MUON/AliMUONDarcHeader.cxx b/MUON/AliMUONDarcHeader.cxx index 259927becca..85ce887bd22 100644 --- a/MUON/AliMUONDarcHeader.cxx +++ b/MUON/AliMUONDarcHeader.cxx @@ -13,6 +13,8 @@ * provided "as is" without express or implied warranty. * **************************************************************************/ +/* $Id$ */ + #include "AliMUONDarcHeader.h" #include "AliMUONRegHeader.h" @@ -25,8 +27,10 @@ /// regional structures. /// +/// \cond CLASSIMP ClassImp(AliMUONDarcHeader) - +/// \endcond + const Int_t AliMUONDarcHeader::fgkHeaderLength = 8; const Int_t AliMUONDarcHeader::fgkDarcScalerLength = 6; const Int_t AliMUONDarcHeader::fgkGlobalScalerLength = 10; @@ -34,7 +38,6 @@ ClassImp(AliMUONDarcHeader) const UInt_t AliMUONDarcHeader::fgkEndOfDarc = 0xDEADFACE; const UInt_t AliMUONDarcHeader::fgkEndOfGlobal = 0xDEADBEEF; - //___________________________________________ AliMUONDarcHeader::AliMUONDarcHeader() : TObject(), diff --git a/MUON/AliMUONDataDigitIterator.h b/MUON/AliMUONDataDigitIterator.h index 8c58bdc4651..38a3c75e86f 100644 --- a/MUON/AliMUONDataDigitIterator.h +++ b/MUON/AliMUONDataDigitIterator.h @@ -10,7 +10,7 @@ /// \class AliMUONDataDigitIterator /// \brief Iterator on digits (handled by AliMUONData). /// -/// \author Laurent Aphecetche +// Author: Laurent Aphecetche #ifndef ALIMUONVDATAITERATOR_H # include "AliMUONVDataIterator.h" diff --git a/MUON/AliMUONDataInterface.cxx b/MUON/AliMUONDataInterface.cxx index ed6062c67ea..cdcbf9ce60c 100644 --- a/MUON/AliMUONDataInterface.cxx +++ b/MUON/AliMUONDataInterface.cxx @@ -1,6 +1,19 @@ - -// Author: Artur Szostak -// email: artur@alice.phy.uct.ac.za +/************************************************************************** + * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * + * * + * Author: The ALICE Off-line Project. * + * Contributors are mentioned in the code where appropriate. * + * * + * Permission to use, copy, modify and distribute this software and its * + * documentation strictly for non-commercial purposes is hereby granted * + * without fee, provided that the above copyright notice appears in all * + * copies and that both the copyright notice and this permission notice * + * appear in the supporting documentation. The authors make no claims * + * about the suitability of this software for any purpose. It is * + * provided "as is" without express or implied warranty. * + **************************************************************************/ + +/* $Id$ */ #include #include @@ -21,9 +34,6 @@ using std::endl; using std::cout; - -ClassImp(AliMUONDataInterface) - /// /// \class AliMUONDataInterface /// @@ -48,6 +58,13 @@ ClassImp(AliMUONDataInterface) /// \deprecated We have to revisit all this AliMUONData stuff anyway, /// and probably make a real AliMUONLoader instead... /// +/// \author Artur Szostak +/// email: artur@alice.phy.uct.ac.za + + +/// \cond CLASSIMP +ClassImp(AliMUONDataInterface) +/// \endcond AliMUONDataInterface::AliMUONDataInterface() : TObject(), fData(NULL, "MUON", "MUON") diff --git a/MUON/AliMUONDataInterface.h b/MUON/AliMUONDataInterface.h index 226e1d3fe5e..d889512c2ae 100644 --- a/MUON/AliMUONDataInterface.h +++ b/MUON/AliMUONDataInterface.h @@ -28,9 +28,6 @@ class AliMUONHit; class AliMUONDigit; class AliMUONTrack; -/// An easy to use interface to the MUON module data stored. -/// \deprecated - class AliMUONDataInterface : public TObject { public: diff --git a/MUON/AliMUONDataIterator.h b/MUON/AliMUONDataIterator.h index 33c76258e1f..2e0a5a943f4 100644 --- a/MUON/AliMUONDataIterator.h +++ b/MUON/AliMUONDataIterator.h @@ -3,7 +3,7 @@ // $Id$ -/// \ingroup +/// \ingroup base /// \class AliMUONDataIterator /// \brief /// diff --git a/MUON/AliMUONDspHeader.cxx b/MUON/AliMUONDspHeader.cxx index 880b5fee8cc..27b23ca9e0a 100644 --- a/MUON/AliMUONDspHeader.cxx +++ b/MUON/AliMUONDspHeader.cxx @@ -12,11 +12,12 @@ * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ + +/* $Id$ */ #include "AliMUONDspHeader.h" #include "AliMUONBusStruct.h" - /// /// DSP structure for tracker raw data. /// Each block contains at most 5 Dsp structures. @@ -25,7 +26,9 @@ /// and event word (1 for nb of word is odd and 0 if not /// +/// \cond CLASSIMP ClassImp(AliMUONDspHeader) +/// \endcond const Int_t AliMUONDspHeader::fgkHeaderLength = 8; diff --git a/MUON/AliMUONLocalStruct.cxx b/MUON/AliMUONLocalStruct.cxx index e6c3a5a348f..c29f91c70fa 100644 --- a/MUON/AliMUONLocalStruct.cxx +++ b/MUON/AliMUONLocalStruct.cxx @@ -13,6 +13,8 @@ * provided "as is" without express or implied warranty. * **************************************************************************/ +/* $Id$ */ + #include "AliMUONLocalStruct.h" /// @@ -23,12 +25,14 @@ /// x position) /// +/// \cond CLASSIMP ClassImp(AliMUONLocalStruct) - +/// \endcond + const Int_t AliMUONLocalStruct::fgkLength = 5; const Int_t AliMUONLocalStruct::fgkScalerLength = 45; const UInt_t AliMUONLocalStruct::fgkEndOfLocal = 0xCAFEFADE; - + //___________________________________________ AliMUONLocalStruct::AliMUONLocalStruct() : TObject(), diff --git a/MUON/AliMUONRegHeader.cxx b/MUON/AliMUONRegHeader.cxx index 8cc8b2aee69..c66c8c85972 100644 --- a/MUON/AliMUONRegHeader.cxx +++ b/MUON/AliMUONRegHeader.cxx @@ -13,11 +13,11 @@ * provided "as is" without express or implied warranty. * **************************************************************************/ +/* $Id$ */ + #include "AliMUONRegHeader.h" #include "AliMUONLocalStruct.h" - - /// /// Regional structure for trigger raw data. /// Each Reg structure contains 16 (at most) local card structure. @@ -25,7 +25,9 @@ /// regional inputs /// +/// \cond CLASSIMP ClassImp(AliMUONRegHeader) +/// \endcond const Int_t AliMUONRegHeader::fgkHeaderLength = 3; const Int_t AliMUONRegHeader::fgkScalerLength = 8; diff --git a/MUON/AliMUONSegFactory.h b/MUON/AliMUONSegFactory.h index f37236d2402..595190fbbee 100644 --- a/MUON/AliMUONSegFactory.h +++ b/MUON/AliMUONSegFactory.h @@ -6,7 +6,7 @@ /// \ingroup sim /// \class AliMUONSegFactory /// \brief New factory for building segmentations at all levels -// +/// /// The factory is associated with a AliMUONGeometryTransformer /// object, used in geometry (module) segmentations for performing /// trasformation between the global reference frame and the local DE one. @@ -30,7 +30,7 @@ /// container: \n /// delete factory.GetSegmentation(); /// -/// Authors: Ivana Hrivnacova, IPN Orsay +/// \author Ivana Hrivnacova, IPN Orsay #ifndef ALI_MUON_SEG_FACTORY_H #define ALI_MUON_SEG_FACTORY_H diff --git a/MUON/AliMUONTriggerCrateStore.h b/MUON/AliMUONTriggerCrateStore.h index 46151e1012c..ecb0646dacc 100644 --- a/MUON/AliMUONTriggerCrateStore.h +++ b/MUON/AliMUONTriggerCrateStore.h @@ -10,7 +10,7 @@ /// \class AliMUONTriggerCrateStore /// \brief A container for AliMUONTriggerCrate objects. /// -/// \author Laurent Aphecetche +// Author Laurent Aphecetche #ifndef ROOT_TObject # include "TObject.h" diff --git a/MUON/AliMUONTriggerSegmentationV2.cxx b/MUON/AliMUONTriggerSegmentationV2.cxx index ac76dce7600..a3df482ca57 100644 --- a/MUON/AliMUONTriggerSegmentationV2.cxx +++ b/MUON/AliMUONTriggerSegmentationV2.cxx @@ -183,7 +183,7 @@ AliMUONTriggerSegmentationV2::Dpy() const //_____________________________________________________________________________ Float_t -AliMUONTriggerSegmentationV2::Dpx(int sectorCode) const +AliMUONTriggerSegmentationV2::Dpx(Int_t sectorCode) const { // Get pad size in x @@ -196,7 +196,7 @@ AliMUONTriggerSegmentationV2::Dpx(int sectorCode) const //_____________________________________________________________________________ Float_t -AliMUONTriggerSegmentationV2::Dpy(int sectorCode) const +AliMUONTriggerSegmentationV2::Dpy(Int_t sectorCode) const { // Get pad size in y @@ -770,7 +770,7 @@ AliMUONTriggerSegmentationV2::SetCorrFunc(Int_t,TF1*) //_____________________________________________________________________________ void -AliMUONTriggerSegmentationV2::SetDAnod(float) +AliMUONTriggerSegmentationV2::SetDAnod(Float_t) { // Not implemented @@ -834,7 +834,7 @@ AliMUONTriggerSegmentationV2::SetPad(Int_t ix, Int_t iy) //_____________________________________________________________________________ void -AliMUONTriggerSegmentationV2::SetPadSize(float,float) +AliMUONTriggerSegmentationV2::SetPadSize(Float_t,Float_t) { // Not implemented diff --git a/MUON/AliMUONTriggerSegmentationV2.h b/MUON/AliMUONTriggerSegmentationV2.h index 22bc0ecc945..b843f408d69 100644 --- a/MUON/AliMUONTriggerSegmentationV2.h +++ b/MUON/AliMUONTriggerSegmentationV2.h @@ -46,7 +46,7 @@ class AliMUONTriggerSegmentationV2 : public AliMUONVGeometryDESegmentation virtual Float_t Dpx(Int_t sectorCode) const; virtual Float_t Dpy(Int_t sectorCode) const; - virtual void Draw(const char */*opt*/ = ""); + virtual void Draw(Option_t*/*opt*/ = ""); void FirstPad(Float_t xhit, Float_t yhit, Float_t zhit, Float_t dx, Float_t dy); diff --git a/MUON/AliMUONTriggerTrack.h b/MUON/AliMUONTriggerTrack.h index ed2e751017e..fe422a0c7fc 100644 --- a/MUON/AliMUONTriggerTrack.h +++ b/MUON/AliMUONTriggerTrack.h @@ -7,12 +7,8 @@ // Revision of includes 07/05/2004 /// \ingroup rec -/// \class AliMUONTrigger +/// \class AliMUONTriggerTrack /// \brief Reconstructed trigger track in ALICE dimuon spectrometer -/// -//////////////////////////////////////////////////////////// -/// Reconstructed trigger track in ALICE dimuon spectrometer -//////////////////////////////////////////////////////////// #include diff --git a/MUON/AliMUONVCalibParam.h b/MUON/AliMUONVCalibParam.h index 8db37141137..0be7fadcee4 100644 --- a/MUON/AliMUONVCalibParam.h +++ b/MUON/AliMUONVCalibParam.h @@ -7,7 +7,7 @@ /// \class AliMUONVCalibParam /// \brief Container of calibration values for a given number of channels. /// -/// \author Laurent Aphecetche +// Author Laurent Aphecetche #ifndef ALIMUONVCALIBPARAM_H #define ALIMUONVCALIBPARAM_H diff --git a/MUON/AliMUONVDataIterator.cxx b/MUON/AliMUONVDataIterator.cxx index ce55e9db2e6..000233b300e 100644 --- a/MUON/AliMUONVDataIterator.cxx +++ b/MUON/AliMUONVDataIterator.cxx @@ -17,8 +17,6 @@ #include "AliMUONVDataIterator.h" -ClassImp(AliMUONVDataIterator) - /// /// \class AliMUONVDataIterator /// @@ -26,6 +24,10 @@ ClassImp(AliMUONVDataIterator) /// /// \author L. Aphecetche +/// \cond CLASSIMP +ClassImp(AliMUONVDataIterator) +/// \endcond + //_____________________________________________________________________________ AliMUONVDataIterator::AliMUONVDataIterator() : TObject() { diff --git a/MUON/AliMUONVDataIterator.h b/MUON/AliMUONVDataIterator.h index fe3b2feb892..424816eb187 100644 --- a/MUON/AliMUONVDataIterator.h +++ b/MUON/AliMUONVDataIterator.h @@ -3,11 +3,11 @@ // $Id$ -/// \ingroup +/// \ingroup base /// \class AliMUONVDataIterator -/// \brief +/// \brief Defines an interface of an iterator over muon data structure(s) /// -/// \author Laurent Aphecetche +// Author Laurent Aphecetche #ifndef ALIMUONVDATAITERATOR_H #define ALIMUONVDATAITERATOR_H diff --git a/MUON/Doxymodules.h b/MUON/Doxymodules.h index 089fb4a1c21..a900913bfdf 100644 --- a/MUON/Doxymodules.h +++ b/MUON/Doxymodules.h @@ -85,6 +85,8 @@ */ /** @} */ +/** @} */ + diff --git a/MUON/mapping/AliMpArea.cxx b/MUON/mapping/AliMpArea.cxx index 44fb19c3943..b17de364c97 100755 --- a/MUON/mapping/AliMpArea.cxx +++ b/MUON/mapping/AliMpArea.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpArea.cxx,v 1.7 2006/03/17 11:34:46 ivana Exp $ +// $MpId: AliMpArea.cxx,v 1.8 2006/05/24 13:58:29 ivana Exp $ // Category: basic // // Class AliMpArea @@ -27,8 +27,9 @@ #include +/// \cond CLASSIMP ClassImp(AliMpArea) - +/// \endcond //_____________________________________________________________________________ AliMpArea::AliMpArea(const TVector2& position, const TVector2& dimensions) diff --git a/MUON/mapping/AliMpArea.h b/MUON/mapping/AliMpArea.h index 595bf96551a..2ae5abff482 100755 --- a/MUON/mapping/AliMpArea.h +++ b/MUON/mapping/AliMpArea.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpArea.h,v 1.8 2006/05/23 13:07:29 ivana Exp $ +// $MpId: AliMpArea.h,v 1.9 2006/05/24 13:58:07 ivana Exp $ /// \ingroup basic /// \class AliMpArea /// \brief A rectangle area positioned in plane.. /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_AREA_H #define ALI_MP_AREA_H diff --git a/MUON/mapping/AliMpBusPatch.cxx b/MUON/mapping/AliMpBusPatch.cxx index 279b2bd8aa8..92658a49a40 100644 --- a/MUON/mapping/AliMpBusPatch.cxx +++ b/MUON/mapping/AliMpBusPatch.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpBusPatch.cxx,v 1.3 2006/03/17 11:51:34 ivana Exp $ +// $MpId: AliMpBusPatch.cxx,v 1.5 2006/05/24 13:58:34 ivana Exp $ // Category: management // Class AliMpBusPatch @@ -34,14 +34,9 @@ #include "TArrayI.h" #include "Riostream.h" +/// \cond CLASSIMP ClassImp(AliMpBusPatch) - -////////////////////////////////////////////////////////// -// -// This class contains the informations about buspatch vs (DE-DDL) -// -////////////////////////////////////////////////////////// - +/// \endcond //_____________________________________________________________________________ AliMpBusPatch::AliMpBusPatch() diff --git a/MUON/mapping/AliMpBusPatch.h b/MUON/mapping/AliMpBusPatch.h index 151eed74f92..dd6e46082b4 100644 --- a/MUON/mapping/AliMpBusPatch.h +++ b/MUON/mapping/AliMpBusPatch.h @@ -2,7 +2,7 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpBusPatch.h,v 1.4 2006/05/23 13:07:38 ivana Exp $ +// $MpId: AliMpBusPatch.h,v 1.5 2006/05/24 13:58:16 ivana Exp $ /// \ingroup management /// \class AliMpBusPatch @@ -10,7 +10,7 @@ /// /// Calculates also the maximum DSP and buspatch numbers for a given DE /// -/// Author: Ch. Finck; Subatech Nantes +/// \author Ch. Finck; Subatech Nantes #ifndef ALI_MP_BUSPATCH_H #define ALI_MP_BUSPATCH_H diff --git a/MUON/mapping/AliMpConnection.cxx b/MUON/mapping/AliMpConnection.cxx index e46b1bc4b4a..aa83b09ccb9 100755 --- a/MUON/mapping/AliMpConnection.cxx +++ b/MUON/mapping/AliMpConnection.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpConnection.cxx,v 1.6 2006/03/17 11:38:06 ivana Exp $ +// $MpId: AliMpConnection.cxx,v 1.7 2006/05/24 13:58:41 ivana Exp $ // Category: motif // // Class AliMpConnection @@ -25,7 +25,9 @@ #include "AliMpConnection.h" +/// \cond CLASSIMP ClassImp(AliMpConnection) +/// \endcond //_____________________________________________________________________________ AliMpConnection::AliMpConnection(Int_t padNum, Int_t bergNum,Int_t kaptonNum, diff --git a/MUON/mapping/AliMpConnection.h b/MUON/mapping/AliMpConnection.h index 46b0379dd29..a0b8e38784c 100755 --- a/MUON/mapping/AliMpConnection.h +++ b/MUON/mapping/AliMpConnection.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpConnection.h,v 1.8 2006/05/23 13:07:41 ivana Exp $ +// $MpId: AliMpConnection.h,v 1.9 2006/05/24 13:58:18 ivana Exp $ /// \ingroup motif /// \class AliMpConnection /// \brief A connection properties. /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_CONNECTION_H #define ALI_MP_CONNECTION_H diff --git a/MUON/mapping/AliMpConstants.cxx b/MUON/mapping/AliMpConstants.cxx index 46023043d0a..887135d1a96 100755 --- a/MUON/mapping/AliMpConstants.cxx +++ b/MUON/mapping/AliMpConstants.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpConstants.cxx,v 1.9 2006/03/02 16:27:04 ivana Exp $ +// $MpId: AliMpConstants.cxx,v 1.11 2006/05/24 13:58:29 ivana Exp $ // Category: basic // // Class AliMpConstants @@ -28,6 +28,10 @@ #include #include +/// \cond CLASSIMP +ClassImp(AliMpConstants) +/// \endcond + // static data const Double_t AliMpConstants::fgkLengthTolerance = 1e-05; // 0.1 mum const Double_t AliMpConstants::fgkLengthStep = 0.1; // 1 mm @@ -35,8 +39,6 @@ const Int_t AliMpConstants::fgkStartPadIndex = 1; const Int_t AliMpConstants::fgkNCh = 14; const Int_t AliMpConstants::fgkNonBendingManuMask(1<<10); -ClassImp(AliMpConstants) - //_____________________________________________________________________________ AliMpConstants::AliMpConstants() : TObject() diff --git a/MUON/mapping/AliMpConstants.h b/MUON/mapping/AliMpConstants.h index 0c8050d6321..dbe15222e64 100755 --- a/MUON/mapping/AliMpConstants.h +++ b/MUON/mapping/AliMpConstants.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpConstants.h,v 1.10 2006/05/23 13:07:29 ivana Exp $ +// $MpId: AliMpConstants.h,v 1.11 2006/05/24 13:58:07 ivana Exp $ /// \ingroup basic /// \class AliMpConstants /// \brief Globally used constants definition. /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_CONSTANTS_H #define ALI_MP_CONSTANTS_H diff --git a/MUON/mapping/AliMpContainers.h b/MUON/mapping/AliMpContainers.h index 4d4536cdea7..41324cce903 100644 --- a/MUON/mapping/AliMpContainers.h +++ b/MUON/mapping/AliMpContainers.h @@ -2,14 +2,14 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpContainers.h,v 1.4 2006/05/23 13:07:29 ivana Exp $ +// $MpId: AliMpContainers.h,v 1.5 2006/05/24 13:58:07 ivana Exp $ /// \ingroup basic /// AliMpContainers /// Compiler directive for selection of containers type: /// Either STL or ROOT /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #define WITH_ROOT //#define WITH_STL diff --git a/MUON/mapping/AliMpDEIterator.cxx b/MUON/mapping/AliMpDEIterator.cxx index 1dae40b6fd9..d9a677b4df6 100644 --- a/MUON/mapping/AliMpDEIterator.cxx +++ b/MUON/mapping/AliMpDEIterator.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpDEIterator.cxx,v 1.5 2006/03/17 11:36:27 ivana Exp $ +// $MpId: AliMpDEIterator.cxx,v 1.6 2006/05/24 13:58:34 ivana Exp $ // Category: management // ------------------------ @@ -32,12 +32,14 @@ #include #include +/// \cond CLASSIMP +ClassImp(AliMpDEIterator) +/// \endcond + const Int_t AliMpDEIterator::fgkMaxNofDetElements = 250; TArrayI AliMpDEIterator::fgDetElemIds(fgkMaxNofDetElements); Int_t AliMpDEIterator::fgNofDetElemIds = 0; -ClassImp(AliMpDEIterator) - // // static private methods // diff --git a/MUON/mapping/AliMpDEIterator.h b/MUON/mapping/AliMpDEIterator.h index b3ad62e375e..065d060f991 100644 --- a/MUON/mapping/AliMpDEIterator.h +++ b/MUON/mapping/AliMpDEIterator.h @@ -2,7 +2,7 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpDEIterator.h,v 1.4 2006/05/23 13:07:38 ivana Exp $ +// $MpId: AliMpDEIterator.h,v 1.5 2006/05/24 13:58:16 ivana Exp $ /// \ingroup management /// \class AliMpDEIterator @@ -14,7 +14,7 @@ /// - or over detection elements in a selected module, if started with /// First(Int_t moduleId) function \n /// -/// Author: Ivana Hrivnacova, IPN Orsay +/// \author Ivana Hrivnacova, IPN Orsay #ifndef ALI_MP_DE_ITERATOR_H #define ALI_MP_DE_ITERATOR_H diff --git a/MUON/mapping/AliMpDEManager.cxx b/MUON/mapping/AliMpDEManager.cxx index ed872bad68c..ce802c9d502 100644 --- a/MUON/mapping/AliMpDEManager.cxx +++ b/MUON/mapping/AliMpDEManager.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpDEManager.cxx,v 1.2 2006/03/02 16:30:09 ivana Exp $ +// $MpId: AliMpDEManager.cxx,v 1.4 2006/05/24 13:58:34 ivana Exp $ // Category: management // // Class AliMpDEManager @@ -35,14 +35,16 @@ #include #include +/// \cond CLASSIMP +ClassImp(AliMpDEManager) +/// \endcond + const char AliMpDEManager::fgkNameSeparator = '_'; const char AliMpDEManager::fgkCommentPrefix = '#'; const Int_t AliMpDEManager::fgkCoefficient = 100; AliMpExMap AliMpDEManager::fgDENamesMap(true); AliMpExMap AliMpDEManager::fgDECathBNBMap(true); -ClassImp(AliMpDEManager) - //______________________________________________________________________________ AliMpDEManager::AliMpDEManager() : TObject() diff --git a/MUON/mapping/AliMpDEManager.h b/MUON/mapping/AliMpDEManager.h index a162d0e6493..044120e2db6 100644 --- a/MUON/mapping/AliMpDEManager.h +++ b/MUON/mapping/AliMpDEManager.h @@ -2,20 +2,20 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpDEManager.h,v 1.5 2006/05/23 13:07:38 ivana Exp $ +// $MpId: AliMpDEManager.h,v 1.6 2006/05/24 13:58:16 ivana Exp $ /// \ingroup management /// \class AliMpDEManager /// \brief The manager class for definition of detection element types -// +/// /// The detection element types are defined via unique names /// in denames.dat file for each station in the mapping data. /// Detection element name is composed of DETypeName and planeTypeName. /// DETypeName is only one per station in case of station1 and 2 quadrants, /// there are more DETypes in case of slat and trigger stations. /// -/// Authors: Ivana Hrivnacova, IPN Orsay -/// Laurent Aphecetche, SUBATECH Nantes +/// \author Ivana Hrivnacova, IPN Orsay; +/// Laurent Aphecetche, SUBATECH Nantes #ifndef ALI_MP_DE_MANAGER_H #define ALI_MP_DE_MANAGER_H diff --git a/MUON/mapping/AliMpDirection.h b/MUON/mapping/AliMpDirection.h index a565bc639b6..1b06f8e6c91 100755 --- a/MUON/mapping/AliMpDirection.h +++ b/MUON/mapping/AliMpDirection.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpDirection.h,v 1.4 2005/08/26 15:43:36 ivana Exp $ +// $MpId: AliMpDirection.h,v 1.6 2006/05/24 13:58:07 ivana Exp $ /// \ingroup basic /// \enum AliMpDirection /// Enumeration for the directions in a plane. /// -/// Authors: David Guez, IPN Orsay +/// \author David Guez, IPN Orsay #ifndef ALI_MP_DIRECTION_H #define ALI_MP_DIRECTION_H diff --git a/MUON/mapping/AliMpExMap.cxx b/MUON/mapping/AliMpExMap.cxx index 6c195f378e0..d6a6bc2d729 100644 --- a/MUON/mapping/AliMpExMap.cxx +++ b/MUON/mapping/AliMpExMap.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpExMap.cxx,v 1.4 2006/03/17 11:34:46 ivana Exp $ +// $MpId: AliMpExMap.cxx,v 1.5 2006/05/24 13:58:29 ivana Exp $ // Category: basic // ------------------------ // Class AliMpExMap @@ -33,6 +33,10 @@ #include +/// \cond CLASSIMP +ClassImp(AliMpExMap) +/// \endcond + // // static members // @@ -46,8 +50,6 @@ const Int_t AliMpExMap::fgkSeparator2 = 100; const TString AliMpExMap::fgkCharacterMap = " 1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ."; -ClassImp(AliMpExMap) - // // static methods // diff --git a/MUON/mapping/AliMpExMap.h b/MUON/mapping/AliMpExMap.h index 6c9287e85ae..35b2e818ad5 100644 --- a/MUON/mapping/AliMpExMap.h +++ b/MUON/mapping/AliMpExMap.h @@ -2,7 +2,7 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpExMap.h,v 1.3 2006/05/23 13:07:29 ivana Exp $ +// $MpId: AliMpExMap.h,v 1.4 2006/05/24 13:58:07 ivana Exp $ /// \ingroup basic /// \class AliMpExMap @@ -11,7 +11,7 @@ /// The objects and keys from TExMap are store in additional /// arrays which are Root persistent. /// -/// Author: Ivana Hrivnacova; IPN Orsay +/// \author Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_EX_MAP_H #define ALI_MP_EX_MAP_H diff --git a/MUON/mapping/AliMpFiles.cxx b/MUON/mapping/AliMpFiles.cxx index 7df5fa5ef99..176a83791fb 100755 --- a/MUON/mapping/AliMpFiles.cxx +++ b/MUON/mapping/AliMpFiles.cxx @@ -37,9 +37,11 @@ #include -// -// static +/// \cond CLASSIMP +ClassImp(AliMpFiles) +/// \endcond +// // static data members const TString AliMpFiles::fgkDataDir = "/data"; @@ -58,8 +60,6 @@ const TString AliMpFiles::fgkBergToGCFileName = "/bergToGC"; const TString AliMpFiles::fgkTriggerLocalBoards = "CRATE.TXT"; const TString AliMpFiles::fgkBusPatchFileName = "DetElemIdToBusPatch"; -ClassImp(AliMpFiles) - //______________________________________________________________________________ AliMpFiles::AliMpFiles() : TObject() diff --git a/MUON/mapping/AliMpFiles.h b/MUON/mapping/AliMpFiles.h index 39e6569a62e..627af014663 100755 --- a/MUON/mapping/AliMpFiles.h +++ b/MUON/mapping/AliMpFiles.h @@ -2,7 +2,7 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpFiles.h,v 1.9 2006/05/23 13:07:29 ivana Exp $ +// $MpId: AliMpFiles.h,v 1.10 2006/05/24 13:58:07 ivana Exp $ /// \ingroup basic /// \class AliMpFiles @@ -13,7 +13,7 @@ /// - motif*.dat - motif description (generated from Exceed) /// - padPos*.dat - pad positions in motif /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_FILES_H #define ALI_MP_FILES_H diff --git a/MUON/mapping/AliMpGraphContext.cxx b/MUON/mapping/AliMpGraphContext.cxx index e3c844d21fe..688352a5464 100755 --- a/MUON/mapping/AliMpGraphContext.cxx +++ b/MUON/mapping/AliMpGraphContext.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpGraphContext.cxx,v 1.10 2006/03/17 11:35:29 ivana Exp $ +// $MpId: AliMpGraphContext.cxx,v 1.11 2006/05/24 13:58:32 ivana Exp $ // Category: graphics // // Class AliMpGraphContext @@ -26,6 +26,10 @@ #include "AliMpGraphContext.h" +/// \cond CLASSIMP +ClassImp(AliMpGraphContext) +/// \endcond + AliMpGraphContext *AliMpGraphContext::fgInstance = 0; AliMpGraphContext::GraphContextVector AliMpGraphContext::fgStack; @@ -33,8 +37,6 @@ AliMpGraphContext::GraphContextVector AliMpGraphContext::fgStack; Int_t AliMpGraphContext::fgStackSize = 0; #endif -ClassImp(AliMpGraphContext) - //_____________________________________________________________________________ AliMpGraphContext::AliMpGraphContext(): TObject(), diff --git a/MUON/mapping/AliMpGraphContext.h b/MUON/mapping/AliMpGraphContext.h index 2770d91fe4b..c50cba0efee 100755 --- a/MUON/mapping/AliMpGraphContext.h +++ b/MUON/mapping/AliMpGraphContext.h @@ -2,14 +2,14 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpGraphContext.h,v 1.10 2006/05/23 13:07:35 ivana Exp $ +// $MpId: AliMpGraphContext.h,v 1.11 2006/05/24 13:58:13 ivana Exp $ /// \ingroup graphics /// \class AliMpGraphContext /// \brief Class describing the correspondance between a given area /// in pad, and a zone of real (cm) position /// -/// Author: David GUEZ, IPN Orsay +/// \author David GUEZ, IPN Orsay #ifndef ALI_MP_GRAPH_CONTEXT_H #define ALI_MP_GRAPH_CONTEXT_H diff --git a/MUON/mapping/AliMpHelper.cxx b/MUON/mapping/AliMpHelper.cxx index 52c7d43d555..4003d89890b 100644 --- a/MUON/mapping/AliMpHelper.cxx +++ b/MUON/mapping/AliMpHelper.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpHelper.cxx,v 1.3 2005/09/19 19:01:31 ivana Exp $ +// $MpId: AliMpHelper.cxx,v 1.5 2006/05/24 13:58:50 ivana Exp $ #include "AliMpHelper.h" @@ -30,7 +30,9 @@ /// /// \author L. Aphecetche +/// \cond CLASSIMP ClassImp(AliMpHelper) +/// \endcond //_____________________________________________________________________________ AliMpHelper::AliMpHelper() : TObject() diff --git a/MUON/mapping/AliMpHelper.h b/MUON/mapping/AliMpHelper.h index 31cc695b294..f72bccd90b6 100644 --- a/MUON/mapping/AliMpHelper.h +++ b/MUON/mapping/AliMpHelper.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpHelper.h,v 1.5 2006/05/23 13:07:47 ivana Exp $ +// $MpId: AliMpHelper.h,v 1.6 2006/05/24 13:58:24 ivana Exp $ /// \ingroup slat /// \class AliMpHelper /// \brief Helper class to parse slat mapping ascii files. /// -/// Author: Laurent Aphecetche +// Author: Laurent Aphecetche #ifndef ALI_MP_HELPER_H #define ALI_MP_HELPER_H diff --git a/MUON/mapping/AliMpIntPair.cxx b/MUON/mapping/AliMpIntPair.cxx index 40b8e40823a..f4d4047860c 100755 --- a/MUON/mapping/AliMpIntPair.cxx +++ b/MUON/mapping/AliMpIntPair.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpIntPair.cxx,v 1.6 2006/03/17 11:34:46 ivana Exp $ +// $MpId: AliMpIntPair.cxx,v 1.7 2006/05/24 13:58:29 ivana Exp $ // Category: basic // // Class AliMpIntPair @@ -30,7 +30,9 @@ #include +/// \cond CLASSIMP ClassImp(AliMpIntPair) +/// \endcond /////////////////////////////////////////////////// diff --git a/MUON/mapping/AliMpIntPair.h b/MUON/mapping/AliMpIntPair.h index a8688f0655a..7dd590c932b 100755 --- a/MUON/mapping/AliMpIntPair.h +++ b/MUON/mapping/AliMpIntPair.h @@ -2,7 +2,7 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpIntPair.h,v 1.5 2006/05/23 13:07:29 ivana Exp $ +// $MpId: AliMpIntPair.h,v 1.6 2006/05/24 13:58:07 ivana Exp $ /// \ingroup basic /// \class AliMpIntPair @@ -11,7 +11,7 @@ /// The pair created by the default constructor is in invalide state, /// setting one of values changes the state to valid. /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_INT_PAIR_H #define ALI_MP_INT_PAIR_H diff --git a/MUON/mapping/AliMpMotif.cxx b/MUON/mapping/AliMpMotif.cxx index 96d1b65fd61..d8d0327f340 100755 --- a/MUON/mapping/AliMpMotif.cxx +++ b/MUON/mapping/AliMpMotif.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpMotif.cxx,v 1.7 2005/08/26 15:43:36 ivana Exp $ +// $MpId: AliMpMotif.cxx,v 1.8 2006/05/24 13:58:41 ivana Exp $ // Category: motif // // Class AliMpMotif @@ -28,7 +28,9 @@ #include "AliMpMotifType.h" #include "AliMpIntPair.h" +/// \cond CLASSIMP ClassImp(AliMpMotif) +/// \endcond //_____________________________________________________________________________ AliMpMotif::AliMpMotif() diff --git a/MUON/mapping/AliMpMotif.h b/MUON/mapping/AliMpMotif.h index a09574add03..0d5160ae661 100755 --- a/MUON/mapping/AliMpMotif.h +++ b/MUON/mapping/AliMpMotif.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpMotif.h,v 1.7 2006/05/23 13:07:41 ivana Exp $ +// $MpId: AliMpMotif.h,v 1.8 2006/05/24 13:58:18 ivana Exp $ /// \ingroup motif /// \class AliMpMotif /// \brief A motif with its unique ID and the motif type. /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_MOTIF_H #define ALI_MP_MOTIF_H diff --git a/MUON/mapping/AliMpMotifMap.cxx b/MUON/mapping/AliMpMotifMap.cxx index 6fa30c24252..1cdce35f219 100755 --- a/MUON/mapping/AliMpMotifMap.cxx +++ b/MUON/mapping/AliMpMotifMap.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpMotifMap.cxx,v 1.14 2006/03/17 11:38:06 ivana Exp $ +// $MpId: AliMpMotifMap.cxx,v 1.16 2006/05/24 13:58:41 ivana Exp $ // Category: motif // ------------------- // Class AliMpMotifMap @@ -37,7 +37,9 @@ #include #include +/// \cond CLASSIMP ClassImp(AliMpMotifMap) +/// \endcond //_____________________________________________________________________________ AliMpMotifMap::AliMpMotifMap(Bool_t /*standardConstructor*/) diff --git a/MUON/mapping/AliMpMotifMap.h b/MUON/mapping/AliMpMotifMap.h index ae48bdd733a..7b58c603e4e 100755 --- a/MUON/mapping/AliMpMotifMap.h +++ b/MUON/mapping/AliMpMotifMap.h @@ -2,19 +2,19 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpMotifMap.h,v 1.13 2006/05/23 13:07:41 ivana Exp $ +// $MpId: AliMpMotifMap.h,v 1.14 2006/05/24 13:58:18 ivana Exp $ /// \ingroup motif /// \class AliMpMotifMap /// \brief Motif map containers - +/// /// The class defines: /// - map of motif objects to their string IDs /// - map of motif type objects to their string IDs /// - map of motif position objects to their string IDs /// - map of motif position objects to their global indices /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_MOTIF_MAP_H #define ALI_MP_MOTIF_MAP_H diff --git a/MUON/mapping/AliMpMotifPainter.cxx b/MUON/mapping/AliMpMotifPainter.cxx index 78be2523245..17b5686011b 100755 --- a/MUON/mapping/AliMpMotifPainter.cxx +++ b/MUON/mapping/AliMpMotifPainter.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpMotifPainter.cxx,v 1.8 2006/03/17 11:35:29 ivana Exp $ +// $MpId: AliMpMotifPainter.cxx,v 1.9 2006/05/24 13:58:32 ivana Exp $ // Category: graphics // // Class AliMpMotifPainter @@ -33,7 +33,9 @@ #include #include +/// \cond CLASSIMP ClassImp(AliMpMotifPainter) +/// \endcond //_______________________________________________________________________ AliMpMotifPainter::AliMpMotifPainter() diff --git a/MUON/mapping/AliMpMotifPainter.h b/MUON/mapping/AliMpMotifPainter.h index 47ca63c080b..be41232420a 100755 --- a/MUON/mapping/AliMpMotifPainter.h +++ b/MUON/mapping/AliMpMotifPainter.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpMotifPainter.h,v 1.7 2006/05/23 13:07:35 ivana Exp $ +// $MpId: AliMpMotifPainter.h,v 1.8 2006/05/24 13:58:13 ivana Exp $ /// \ingroup graphics /// \class AliMpMotifPainter /// \brief Class for drawing a motif into canvas -// -/// Authors: David Guez, IPN Orsay +/// +/// \author David Guez, IPN Orsay #ifndef ALI_MP_MOTIF_PAINTER_H #define ALI_MP_MOTIF_PAINTER_H diff --git a/MUON/mapping/AliMpMotifPosition.cxx b/MUON/mapping/AliMpMotifPosition.cxx index 2d4d0d3ce51..068d6a8a813 100755 --- a/MUON/mapping/AliMpMotifPosition.cxx +++ b/MUON/mapping/AliMpMotifPosition.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpMotifPosition.cxx,v 1.8 2006/03/17 11:38:06 ivana Exp $ +// $MpId: AliMpMotifPosition.cxx,v 1.9 2006/05/24 13:58:41 ivana Exp $ // // Class AliMpMotifPosition // ------------------------ @@ -28,7 +28,9 @@ #include +/// \cond CLASSIMP ClassImp(AliMpMotifPosition) +/// \endcond //______________________________________________________________________________ AliMpMotifPosition::AliMpMotifPosition(Int_t id, AliMpVMotif* motif, diff --git a/MUON/mapping/AliMpMotifPosition.h b/MUON/mapping/AliMpMotifPosition.h index 63b254889a6..ad693e4a188 100755 --- a/MUON/mapping/AliMpMotifPosition.h +++ b/MUON/mapping/AliMpMotifPosition.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpMotifPosition.h,v 1.8 2006/05/23 13:07:42 ivana Exp $ +// $MpId: AliMpMotifPosition.h,v 1.9 2006/05/24 13:58:18 ivana Exp $ /// \ingroup motif /// \class AliMpMotifPosition /// \brief A placed motif. /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_MOTIF_POSITION_H #define ALI_MP_MOTIF_POSITION_H diff --git a/MUON/mapping/AliMpMotifPositionPadIterator.cxx b/MUON/mapping/AliMpMotifPositionPadIterator.cxx index c14317ce99f..7a7446b047f 100755 --- a/MUON/mapping/AliMpMotifPositionPadIterator.cxx +++ b/MUON/mapping/AliMpMotifPositionPadIterator.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpMotifPositionPadIterator.cxx,v 1.5 2005/08/26 15:43:36 ivana Exp $ +// $MpId: AliMpMotifPositionPadIterator.cxx,v 1.6 2006/05/24 13:58:41 ivana Exp $ // Category: motif // // Class AliMpMotifPositionPadIterator @@ -28,7 +28,9 @@ #include "AliMpMotifType.h" #include "AliMpConnection.h" +/// \cond CLASSIMP ClassImp(AliMpMotifPositionPadIterator) +/// \endcond //______________________________________________________________________________ AliMpMotifPositionPadIterator::AliMpMotifPositionPadIterator(): diff --git a/MUON/mapping/AliMpMotifPositionPadIterator.h b/MUON/mapping/AliMpMotifPositionPadIterator.h index 770f8463720..f29076fd65e 100755 --- a/MUON/mapping/AliMpMotifPositionPadIterator.h +++ b/MUON/mapping/AliMpMotifPositionPadIterator.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpMotifPositionPadIterator.h,v 1.6 2006/05/23 13:07:42 ivana Exp $ +// $MpId: AliMpMotifPositionPadIterator.h,v 1.7 2006/05/24 13:58:18 ivana Exp $ /// \ingroup motif /// \class AliMpMotifPositionPadIterator /// \brief An iterator over the pads of a given motif position /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_MOTIF_POSITION_PAD_ITERATOR_H #define ALI_MP_MOTIF_POSITION_PAD_ITERATOR_H diff --git a/MUON/mapping/AliMpMotifReader.cxx b/MUON/mapping/AliMpMotifReader.cxx index a070c9ff916..4a63bcd08cd 100644 --- a/MUON/mapping/AliMpMotifReader.cxx +++ b/MUON/mapping/AliMpMotifReader.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpMotifReader.cxx,v 1.9 2006/04/24 13:54:33 ivana Exp $ +// $MpId: AliMpMotifReader.cxx,v 1.10 2006/05/24 13:58:41 ivana Exp $ // Category: sector // // Class AliMpMotifReader @@ -44,7 +44,9 @@ #include #endif +/// \cond CLASSIMP ClassImp(AliMpMotifReader) +/// \endcond //_____________________________________________________________________________ AliMpMotifReader::AliMpMotifReader(AliMpStationType station, diff --git a/MUON/mapping/AliMpMotifReader.h b/MUON/mapping/AliMpMotifReader.h index 3d46ba47f00..2328834ef4d 100644 --- a/MUON/mapping/AliMpMotifReader.h +++ b/MUON/mapping/AliMpMotifReader.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpMotifReader.h,v 1.8 2006/05/23 13:07:42 ivana Exp $ +// $MpId: AliMpMotifReader.h,v 1.9 2006/05/24 13:58:18 ivana Exp $ /// \ingroup motif /// \class AliMpMotifReader /// \brief Class that takes care of reading the motifs data. /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_MOTIF_READER_H #define ALI_MP_MOTIF_READER_H diff --git a/MUON/mapping/AliMpMotifSpecial.cxx b/MUON/mapping/AliMpMotifSpecial.cxx index 204575989cc..b5783cf8952 100755 --- a/MUON/mapping/AliMpMotifSpecial.cxx +++ b/MUON/mapping/AliMpMotifSpecial.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpMotifSpecial.cxx,v 1.11 2006/04/24 13:54:33 ivana Exp $ +// $MpId: AliMpMotifSpecial.cxx,v 1.12 2006/05/24 13:58:41 ivana Exp $ // Category: motif // // Class AliMpMotifSpecial @@ -31,7 +31,9 @@ #include +/// \cond CLASSIMP ClassImp(AliMpMotifSpecial) +/// \endcond //______________________________________________________________________________ @@ -264,8 +266,8 @@ AliMpIntPair AliMpMotifSpecial::PadIndicesLocal(const TVector2& localPos) const void AliMpMotifSpecial::SetPadDimensions(const AliMpIntPair& localIndices, const TVector2& dimensions) { - /// Set the dimensions of the pad located at to the given - /// + /// Set the dimensions of the pad located at \a localIndices to the given + /// \a dimensions if ( !GetMotifType()->HasPad(localIndices)){ Warning("SetPadDimensions","Pad indices outside limits"); diff --git a/MUON/mapping/AliMpMotifSpecial.h b/MUON/mapping/AliMpMotifSpecial.h index 6184350b490..c922068b829 100755 --- a/MUON/mapping/AliMpMotifSpecial.h +++ b/MUON/mapping/AliMpMotifSpecial.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpMotifSpecial.h,v 1.10 2006/05/23 13:07:42 ivana Exp $ +// $MpId: AliMpMotifSpecial.h,v 1.11 2006/05/24 13:58:18 ivana Exp $ /// \ingroup motif /// \class AliMpMotifSpecial /// \brief A special motif with varying pad dimensions /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_MOTIF_SPECIAL_H #define ALI_MP_MOTIF_SPECIAL_H diff --git a/MUON/mapping/AliMpMotifType.cxx b/MUON/mapping/AliMpMotifType.cxx index bb634e8cbf8..c4b846992b4 100755 --- a/MUON/mapping/AliMpMotifType.cxx +++ b/MUON/mapping/AliMpMotifType.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpMotifType.cxx,v 1.9 2006/03/17 11:38:06 ivana Exp $ +// $MpId: AliMpMotifType.cxx,v 1.10 2006/05/24 13:58:41 ivana Exp $ // Category: motif // // Class AliMpMotifType @@ -31,9 +31,11 @@ #include -const Int_t AliMpMotifType::fgkPadNumForA = 65; - +/// \cond CLASSIMP ClassImp(AliMpMotifType) +/// \endcond + +const Int_t AliMpMotifType::fgkPadNumForA = 65; //______________________________________________________________________________ AliMpMotifType::AliMpMotifType(const TString &id) @@ -381,7 +383,7 @@ Int_t AliMpMotifType::GetNofPads() const //______________________________________________________________________________ Bool_t AliMpMotifType::HasPad(const AliMpIntPair& localIndices) const { - /// Return true if the pad indexed by has a connection + /// Return true if the pad indexed by \a localIndices has a connection if (!localIndices.IsValid()) return false; diff --git a/MUON/mapping/AliMpMotifType.h b/MUON/mapping/AliMpMotifType.h index 890744537d2..f1e5ea8e8aa 100755 --- a/MUON/mapping/AliMpMotifType.h +++ b/MUON/mapping/AliMpMotifType.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpMotifType.h,v 1.10 2006/05/23 13:07:42 ivana Exp $ +// $MpId: AliMpMotifType.h,v 1.11 2006/05/24 13:58:18 ivana Exp $ /// \ingroup motif /// \class AliMpMotifType /// \brief Class that defines the motif properties. /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_MOTIF_TYPE_H #define ALI_MP_MOTIF_TYPE_H diff --git a/MUON/mapping/AliMpMotifTypePadIterator.cxx b/MUON/mapping/AliMpMotifTypePadIterator.cxx index 7fee81d76ce..d53e94c5936 100755 --- a/MUON/mapping/AliMpMotifTypePadIterator.cxx +++ b/MUON/mapping/AliMpMotifTypePadIterator.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpMotifTypePadIterator.cxx,v 1.5 2005/08/26 15:43:36 ivana Exp $ +// $MpId: AliMpMotifTypePadIterator.cxx,v 1.6 2006/05/24 13:58:41 ivana Exp $ // Category: motif // // Class AliMpMotifTypePadIterator @@ -26,7 +26,9 @@ #include "AliMpMotifTypePadIterator.h" #include "AliMpMotifType.h" +/// \cond CLASSIMP ClassImp(AliMpMotifTypePadIterator) +/// \endcond //______________________________________________________________________________ AliMpMotifTypePadIterator::AliMpMotifTypePadIterator(): @@ -95,8 +97,8 @@ AliMpIntPair AliMpMotifTypePadIterator::FindFirstPadInLine(AliMpIntPair indices) const { /// Find the indices of the first pad in the same line -/// as the , and in column, at least equal, to the -/// one of +/// as the \a indices, and in column, at least equal, to the +/// one of \a indices if (!fMotifType) return AliMpIntPair::Invalid(); diff --git a/MUON/mapping/AliMpMotifTypePadIterator.h b/MUON/mapping/AliMpMotifTypePadIterator.h index 80ec4d90678..e12fadf1291 100755 --- a/MUON/mapping/AliMpMotifTypePadIterator.h +++ b/MUON/mapping/AliMpMotifTypePadIterator.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpMotifTypePadIterator.h,v 1.7 2006/05/23 13:07:42 ivana Exp $ +// $MpId: AliMpMotifTypePadIterator.h,v 1.8 2006/05/24 13:58:18 ivana Exp $ /// \ingroup motif /// \class AliMpMotifTypePadIterator /// \brief An iterator over the pads of a given motif type /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_MOTIF_TYPE_PAD_ITERATOR_H #define ALI_MP_MOTIF_TYPE_PAD_ITERATOR_H diff --git a/MUON/mapping/AliMpNeighboursPadIterator.cxx b/MUON/mapping/AliMpNeighboursPadIterator.cxx index 9547b6456c8..a4fb86be662 100755 --- a/MUON/mapping/AliMpNeighboursPadIterator.cxx +++ b/MUON/mapping/AliMpNeighboursPadIterator.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpNeighboursPadIterator.cxx,v 1.11 2006/03/02 16:37:30 ivana Exp $ +// $MpId: AliMpNeighboursPadIterator.cxx,v 1.12 2006/05/24 13:58:46 ivana Exp $ // Category: sector // // Class AliMpNeighboursPadIterator @@ -31,11 +31,13 @@ #include +/// \cond CLASSIMP +ClassImp(AliMpNeighboursPadIterator) +/// \endcond + const UInt_t AliMpNeighboursPadIterator::fgkInvalidIndex = 9999; //never so much neighbours... -ClassImp(AliMpNeighboursPadIterator) - //______________________________________________________________________________ AliMpNeighboursPadIterator::AliMpNeighboursPadIterator() : AliMpVPadIterator(), @@ -119,8 +121,8 @@ AliMpNeighboursPadIterator::operator = (const AliMpNeighboursPadIterator& right) //______________________________________________________________________________ Bool_t AliMpNeighboursPadIterator::IsNeighbour(const AliMpPad& pad) const { -/// Return true if the pad located by is a neighbour of those -/// located at +/// Return true if the pad located by \a pad is a neighbour of those +/// located at a\ fCenterPad if ( !pad.IsValid() ) return kFALSE; @@ -138,8 +140,8 @@ AliMpNeighboursPadIterator::PadVectorLine(const AliMpPad& from, const AliMpIntPair& direction) const { /// Fill a new vector with all pads which have common -/// parts with the pad located at , in a given line -/// starting from and moving by +/// parts with the pad located at \a fCenterPad, in a given line +/// starting from \a from and moving by \a direction AliMpPad current = from; PadVector ans; @@ -175,8 +177,8 @@ AliMpNeighboursPadIterator::PadVectorLine(const AliMpPad& from, const AliMpIntPair& direction) const { /// Fill a new vector with all pads which have common -/// parts with the pad located at , in a given line -/// starting from and moving by +/// parts with the pad located at \a fCenterPad, in a given line +/// starting from \a from and moving by \a direction AliMpPad current = from; PadVector* ans = new PadVector(); @@ -227,7 +229,7 @@ void AliMpNeighboursPadIterator::UpdateTotalSet(PadSet& setTotal, void AliMpNeighboursPadIterator::FillPadsVector(Bool_t includeCenter) { /// Fill the indices vector with all indices of pads which have common -/// parts with the pad located at +/// parts with the pad located at \a fCenterPad if (!fkSegmentation || !fCenterPad.IsValid()) return; diff --git a/MUON/mapping/AliMpNeighboursPadIterator.h b/MUON/mapping/AliMpNeighboursPadIterator.h index ea86829f754..fce2c2f965e 100755 --- a/MUON/mapping/AliMpNeighboursPadIterator.h +++ b/MUON/mapping/AliMpNeighboursPadIterator.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpNeighboursPadIterator.h,v 1.11 2006/05/23 13:07:44 ivana Exp $ +// $MpId: AliMpNeighboursPadIterator.h,v 1.12 2006/05/24 13:58:21 ivana Exp $ /// \ingroup sector /// \class AliMpNeighboursPadIterator /// \brief An iterator over the pads surrounding a given pad /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_NEIGHBOURS_PAD_ITERATOR_H #define ALI_MP_NEIGHBOURS_PAD_ITERATOR_H diff --git a/MUON/mapping/AliMpPCB.cxx b/MUON/mapping/AliMpPCB.cxx index 561d91f03f0..0df76784d9d 100644 --- a/MUON/mapping/AliMpPCB.cxx +++ b/MUON/mapping/AliMpPCB.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpPCB.cxx,v 1.6 2006/03/17 16:42:33 ivana Exp $ +// $MpId: AliMpPCB.cxx,v 1.8 2006/05/24 13:58:50 ivana Exp $ #include "AliMpPCB.h" @@ -46,7 +46,9 @@ /// /// \author L. Aphecetche +/// \cond CLASSIMP ClassImp(AliMpPCB) +/// \endcond //_____________________________________________________________________________ AliMpPCB::AliMpPCB() diff --git a/MUON/mapping/AliMpPCB.h b/MUON/mapping/AliMpPCB.h index ec095543000..72ab9ecdb1c 100644 --- a/MUON/mapping/AliMpPCB.h +++ b/MUON/mapping/AliMpPCB.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpPCB.h,v 1.8 2006/05/23 13:07:47 ivana Exp $ +// $MpId: AliMpPCB.h,v 1.9 2006/05/24 13:58:24 ivana Exp $ /// \ingroup slat /// \class AliMpPCB /// \brief A PCB for station 3,4 or 5 /// -/// Author: Laurent Aphecetche +// Author: Laurent Aphecetche #ifndef ALIMPPCB_H #define ALIMPPCB_H diff --git a/MUON/mapping/AliMpPCBPainter.cxx b/MUON/mapping/AliMpPCBPainter.cxx index b5dbbb0052e..7b732427722 100644 --- a/MUON/mapping/AliMpPCBPainter.cxx +++ b/MUON/mapping/AliMpPCBPainter.cxx @@ -14,10 +14,10 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpPCBPainter.cxx,v 1.4 2005/09/19 18:56:46 ivana Exp $ +// $MpId: AliMpPCBPainter.cxx,v 1.8 2006/05/24 13:58:32 ivana Exp $ /// -/// \class AliMpSlatPainter +/// \class AliMpPCBPainter /// /// Class for drawing a PCB into canvas /// @@ -36,7 +36,9 @@ #include +/// \cond CLASSIMP ClassImp(AliMpPCBPainter) +/// \endcond //_____________________________________________________________________________ AliMpPCBPainter::AliMpPCBPainter(AliMpPCB* pcb) diff --git a/MUON/mapping/AliMpPCBPainter.h b/MUON/mapping/AliMpPCBPainter.h index 7ea88827594..e4ac6661fea 100644 --- a/MUON/mapping/AliMpPCBPainter.h +++ b/MUON/mapping/AliMpPCBPainter.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpPCBPainter.h,v 1.6 2006/05/23 13:07:35 ivana Exp $ +// $MpId: AliMpPCBPainter.h,v 1.7 2006/05/24 13:58:13 ivana Exp $ /// \ingroup graphics /// \class AliMpPCBPainter /// \brief Class for drawing a PCB into canvas /// -/// \author Laurent Aphecetche +// Author: Laurent Aphecetche #ifndef ALIMPPCBPAINTER_H #define ALIMPPCBPAINTER_H diff --git a/MUON/mapping/AliMpPad.cxx b/MUON/mapping/AliMpPad.cxx index f7bb4a42925..00c86d1c5bc 100755 --- a/MUON/mapping/AliMpPad.cxx +++ b/MUON/mapping/AliMpPad.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpPad.cxx,v 1.8 2006/03/17 11:34:46 ivana Exp $ +// $MpId: AliMpPad.cxx,v 1.9 2006/05/24 13:58:29 ivana Exp $ // Category: basic // // Class AliMpPad @@ -31,13 +31,9 @@ #include #include +/// \cond CLASSIMP ClassImp(AliMpPad) - -////////////////////////////////////////////////////////// -// -// This class encapsulate all the information about a pad -// -////////////////////////////////////////////////////////// +/// \endcond const Int_t AliMpPad::fgkMaxNofLocations = 6; diff --git a/MUON/mapping/AliMpPad.h b/MUON/mapping/AliMpPad.h index cac54b872b1..f12a91ff6fc 100755 --- a/MUON/mapping/AliMpPad.h +++ b/MUON/mapping/AliMpPad.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpPad.h,v 1.10 2006/05/23 13:07:29 ivana Exp $ +// $MpId: AliMpPad.h,v 1.11 2006/05/24 13:58:07 ivana Exp $ /// \ingroup basic /// \class AliMpPad /// \brief Class which encapsuate all information about a pad /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_PAD_H #define ALI_MP_PAD_H diff --git a/MUON/mapping/AliMpPadIteratorPtr.cxx b/MUON/mapping/AliMpPadIteratorPtr.cxx index ae1c8c51c61..d5ca9188cfb 100755 --- a/MUON/mapping/AliMpPadIteratorPtr.cxx +++ b/MUON/mapping/AliMpPadIteratorPtr.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpPadIteratorPtr.cxx,v 1.6 2005/08/26 15:43:36 ivana Exp $ +// $MpId: AliMpPadIteratorPtr.cxx,v 1.7 2006/05/24 13:58:29 ivana Exp $ // Category: basic // // Class AliMpPadIteratorPtr @@ -31,7 +31,9 @@ #include "AliMpPadIteratorPtr.h" #include "AliMpVPadIterator.h" +/// \cond CLASSIMP ClassImp(AliMpPadIteratorPtr) +/// \endcond //_____________________________________________________________________________ AliMpPadIteratorPtr::AliMpPadIteratorPtr(AliMpVPadIterator* it) diff --git a/MUON/mapping/AliMpPadIteratorPtr.h b/MUON/mapping/AliMpPadIteratorPtr.h index b4604200a85..a05d88f29dc 100755 --- a/MUON/mapping/AliMpPadIteratorPtr.h +++ b/MUON/mapping/AliMpPadIteratorPtr.h @@ -2,7 +2,7 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpPadIteratorPtr.h,v 1.6 2006/05/23 13:07:29 ivana Exp $ +// $MpId: AliMpPadIteratorPtr.h,v 1.7 2006/05/24 13:58:07 ivana Exp $ /// \ingroup basic /// \class AliMpPadIteratorPtr @@ -13,7 +13,7 @@ /// AliMpVIndexed* myIndexed = MyIndexed(); \n /// MVIterator& it = *AliMpPadIteratorPtr(myIndexed->CreateIterator()); \n /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_PAD_ITERATOR_PTR_H #define ALI_MP_PAD_ITERATOR_PTR_H diff --git a/MUON/mapping/AliMpPadPair.cxx b/MUON/mapping/AliMpPadPair.cxx index 8ab85c51e0c..b6f82d21c34 100644 --- a/MUON/mapping/AliMpPadPair.cxx +++ b/MUON/mapping/AliMpPadPair.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpPadPair.cxx,v 1.6 2005/08/26 15:43:36 ivana Exp $ +// $MpId: AliMpPadPair.cxx,v 1.7 2006/05/24 13:58:29 ivana Exp $ // Category: basic // // Class AliMpPadPair @@ -26,8 +26,9 @@ #include "AliMpPadPair.h" +/// \cond CLASSIMP ClassImp(AliMpPadPair) - +/// \endcond //_____________________________________________________________________________ AliMpPadPair::AliMpPadPair(const AliMpPad& pad1, const AliMpPad& pad2) diff --git a/MUON/mapping/AliMpPadPair.h b/MUON/mapping/AliMpPadPair.h index c66bb12ed75..2059cc99ae0 100644 --- a/MUON/mapping/AliMpPadPair.h +++ b/MUON/mapping/AliMpPadPair.h @@ -2,14 +2,14 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpPadPair.h,v 1.9 2006/05/23 13:07:29 ivana Exp $ +// $MpId: AliMpPadPair.h,v 1.10 2006/05/24 13:58:07 ivana Exp $ /// \ingroup basic /// \class AliMpPadPair /// \brief Wrap up for std::pair /// to avoid problems with CINT. /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_PAD_PAIR_H #define ALI_MP_PAD_PAIR_H diff --git a/MUON/mapping/AliMpPadRow.cxx b/MUON/mapping/AliMpPadRow.cxx index 9264ace9816..43c79f7b35e 100755 --- a/MUON/mapping/AliMpPadRow.cxx +++ b/MUON/mapping/AliMpPadRow.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpPadRow.cxx,v 1.7 2006/03/17 11:38:43 ivana Exp $ +// $MpId: AliMpPadRow.cxx,v 1.8 2006/05/24 13:58:46 ivana Exp $ // Category: sector // // Class AliMpPadRow @@ -31,7 +31,9 @@ #include +/// \cond CLASSIMP ClassImp(AliMpPadRow) +/// \endcond //_____________________________________________________________________________ AliMpPadRow::AliMpPadRow(AliMpXDirection direction) diff --git a/MUON/mapping/AliMpPadRow.h b/MUON/mapping/AliMpPadRow.h index d102ed15afb..4e1d91a31d0 100755 --- a/MUON/mapping/AliMpPadRow.h +++ b/MUON/mapping/AliMpPadRow.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpPadRow.h,v 1.9 2006/05/23 13:07:44 ivana Exp $ +// $MpId: AliMpPadRow.h,v 1.10 2006/05/24 13:58:21 ivana Exp $ /// \ingroup sector /// \class AliMpPadRow /// \brief A pad row composed of the pad row segments. /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_PAD_ROW_H #define ALI_MP_PAD_ROW_H diff --git a/MUON/mapping/AliMpPadRowLSegment.cxx b/MUON/mapping/AliMpPadRowLSegment.cxx index 3a34c861bc4..4e4da3dec02 100755 --- a/MUON/mapping/AliMpPadRowLSegment.cxx +++ b/MUON/mapping/AliMpPadRowLSegment.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpPadRowLSegment.cxx,v 1.5 2006/03/17 11:38:43 ivana Exp $ +// $MpId: AliMpPadRowLSegment.cxx,v 1.6 2006/05/24 13:58:46 ivana Exp $ // Category: sector // // Class AliMpPadRowLSegment @@ -32,7 +32,9 @@ #include "AliMpMotif.h" #include "AliMpMotifType.h" +/// \cond CLASSIMP ClassImp(AliMpPadRowLSegment) +/// \endcond //_____________________________________________________________________________ AliMpPadRowLSegment::AliMpPadRowLSegment( diff --git a/MUON/mapping/AliMpPadRowLSegment.h b/MUON/mapping/AliMpPadRowLSegment.h index 43025191a6c..8e8e2a0712b 100755 --- a/MUON/mapping/AliMpPadRowLSegment.h +++ b/MUON/mapping/AliMpPadRowLSegment.h @@ -2,7 +2,7 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpPadRowLSegment.h,v 1.6 2006/05/23 13:07:44 ivana Exp $ +// $MpId: AliMpPadRowLSegment.h,v 1.7 2006/05/24 13:58:21 ivana Exp $ /// \ingroup sector /// \class AliMpPadRowLSegment @@ -12,7 +12,7 @@ /// the pads are placed from the offset (defined in the base class) /// to the left. /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_PAD_ROW_L_SEGMENT_H #define ALI_MP_PAD_ROW_L_SEGMENT_H diff --git a/MUON/mapping/AliMpPadRowRSegment.cxx b/MUON/mapping/AliMpPadRowRSegment.cxx index aae00d2527c..227b6ec4294 100644 --- a/MUON/mapping/AliMpPadRowRSegment.cxx +++ b/MUON/mapping/AliMpPadRowRSegment.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpPadRowRSegment.cxx,v 1.5 2006/03/17 11:38:43 ivana Exp $ +// $MpId: AliMpPadRowRSegment.cxx,v 1.6 2006/05/24 13:58:46 ivana Exp $ // Category: sector // // Class AliMpPadRowRSegment @@ -32,7 +32,9 @@ #include "AliMpMotif.h" #include "AliMpMotifType.h" +/// \cond CLASSIMP ClassImp(AliMpPadRowRSegment) +/// \endcond //______________________________________________________________________________ AliMpPadRowRSegment::AliMpPadRowRSegment(AliMpPadRow* padRow, AliMpMotif* motif, diff --git a/MUON/mapping/AliMpPadRowRSegment.h b/MUON/mapping/AliMpPadRowRSegment.h index bdb4b7c2df9..36892fc2af7 100644 --- a/MUON/mapping/AliMpPadRowRSegment.h +++ b/MUON/mapping/AliMpPadRowRSegment.h @@ -2,7 +2,7 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpPadRowRSegment.h,v 1.6 2006/05/23 13:07:44 ivana Exp $ +// $MpId: AliMpPadRowRSegment.h,v 1.7 2006/05/24 13:58:21 ivana Exp $ /// \ingroup sector /// \class AliMpPadRowRSegment @@ -12,7 +12,7 @@ /// the pads are placed from the offset (defined in the base class) /// to the right. /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_PAD_ROW_R_SEGMENT_H #define ALI_MP_PAD_ROW_R_SEGMENT_H diff --git a/MUON/mapping/AliMpPlaneType.h b/MUON/mapping/AliMpPlaneType.h index 1dbe974437f..974efc92fec 100755 --- a/MUON/mapping/AliMpPlaneType.h +++ b/MUON/mapping/AliMpPlaneType.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpPlaneType.h,v 1.7 2006/05/23 13:07:29 ivana Exp $ +// $MpId: AliMpPlaneType.h,v 1.8 2006/05/24 13:58:07 ivana Exp $ /// \ingroup basic /// \enum AliMpPlaneType /// Enumeration for refering to bending and non-bending planes. /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_PLANE_TYPE_H #define ALI_MP_PLANE_TYPE_H diff --git a/MUON/mapping/AliMpRow.cxx b/MUON/mapping/AliMpRow.cxx index 8711dfe2486..5ccd38a7ad6 100755 --- a/MUON/mapping/AliMpRow.cxx +++ b/MUON/mapping/AliMpRow.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpRow.cxx,v 1.8 2006/03/17 11:38:43 ivana Exp $ +// $MpId: AliMpRow.cxx,v 1.9 2006/05/24 13:58:46 ivana Exp $ // Category: sector // // Class AliMpRow @@ -36,7 +36,9 @@ #include #include +/// \cond CLASSIMP ClassImp(AliMpRow) +/// \endcond //_____________________________________________________________________________ AliMpRow::AliMpRow(Int_t id, AliMpMotifMap* motifMap) diff --git a/MUON/mapping/AliMpRow.h b/MUON/mapping/AliMpRow.h index bfabc205396..48d3e2a9df5 100755 --- a/MUON/mapping/AliMpRow.h +++ b/MUON/mapping/AliMpRow.h @@ -2,13 +2,13 @@ * See cxx source for full Copyright notice */ // $Id$ -// $MpId: AliMpRow.h,v 1.10 2006/05/23 13:07:44 ivana Exp $ +// $MpId: AliMpRow.h,v 1.11 2006/05/24 13:58:21 ivana Exp $ /// \ingroup sector /// \class AliMpRow /// \brief A row composed of the row segments. /// -/// Authors: David Guez, Ivana Hrivnacova; IPN Orsay +/// \author David Guez, Ivana Hrivnacova; IPN Orsay #ifndef ALI_MP_ROW_H #define ALI_MP_ROW_H diff --git a/MUON/mapping/AliMpRowPainter.cxx b/MUON/mapping/AliMpRowPainter.cxx index 1e53b65ca60..6e78228204d 100755 --- a/MUON/mapping/AliMpRowPainter.cxx +++ b/MUON/mapping/AliMpRowPainter.cxx @@ -14,7 +14,7 @@ **************************************************************************/ // $Id$ -// $MpId: AliMpRowPainter.cxx,v 1.7 2006/03/17 11:35:29 ivana Exp $ +// $MpId: AliMpRowPainter.cxx,v 1.8 2006/05/24 13:58:32 ivana Exp $ // Category: graphics // // Class AliMpRowPainter @@ -31,7 +31,9 @@ #include #include +/// \cond CLASSIMP ClassImp(AliMpRowPainter) +/// \endcond //_______________________________________________________________________ AliMpRowPainter::AliMpRowPainter() @@ -105,7 +107,7 @@ TVector2 AliMpRowPainter::GetDimensions() const void AliMpRowPainter::Draw(Option_t *option) { /// Draw the sector on the current pad -/// The first letter of