]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FMD/AliFMDDigitizer.h
Fixed coding convention issues as given by the automatic
[u/mrichter/AliRoot.git] / FMD / AliFMDDigitizer.h
index 1d9530d69902d8165b85da4def669025441cb016..b51d4f7dfe07ba0f5fa7657d463bebda168e3a2d 100644 (file)
@@ -42,32 +42,49 @@ class AliFMDDigit;
 
 
 //====================================================================
-/** @class AliFMDDigitizer
-    @brief Concrete digitizer to make digits from hits.  See also
-    AliFMDBaseDigitizer documentation.  
-    @ingroup FMD_sim
+/** 
+ * @class AliFMDDigitizer
+ * @brief Concrete digitizer to make digits from hits.  See also
+ * AliFMDBaseDigitizer documentation.  
+ *
+ * @ingroup FMD_sim
  */
 class AliFMDDigitizer : public AliFMDBaseDigitizer 
 {
 public:
-  /** CTOR */
+  /** 
+   * CTOR 
+   */
   AliFMDDigitizer() : AliFMDBaseDigitizer() {}
-  /** CTOR 
-      @param manager Manager of digitization */
+  /** 
+   * CTOR 
+   *
+   * @param manager Manager of digitization 
+   */
   AliFMDDigitizer(AliRunDigitizer * manager)
     : AliFMDBaseDigitizer(manager) {}
-  /** DTOR */
+  /** 
+   * DTOR 
+   */
   virtual ~AliFMDDigitizer() {}
-  /** Initialise */
+  /** 
+   * Initialise 
+   */
   virtual Bool_t Init();
-  /** Execute this digitizer.  
-      This member function will be called once per event by the passed
-      AliRunDigitizer manager object. 
-      @param options Not used */
+  /** 
+   * Execute this digitizer.  
+   * This member function will be called once per event by the passed
+   * AliRunDigitizer manager object. 
+   *
+   * @param options Not used 
+   */
   virtual void Exec(Option_t* option="");
 protected:
-  /** Sum contributions from SDigits 
-      @param sdigitsBranch Branch of SDigit data */
+  /** 
+   * Sum contributions from SDigits 
+   *
+   * @param sdigitsBranch Branch of SDigit data 
+   */
   void SumContributions(TBranch* sdigitsBranch);
   
   ClassDef(AliFMDDigitizer,1) // Make Digits from Hits