LCOV - code coverage report
Current view: top level - MUON/MUONraw - AliMUONVRawStreamTracker.cxx (source / functions) Hit Total Coverage
Test: coverage.info Lines: 1 9 11.1 %
Date: 2016-06-14 17:26:59 Functions: 1 6 16.7 %

          Line data    Source code
       1             : /**************************************************************************
       2             :  * This file is property of and copyright by the ALICE HLT Project        *
       3             :  * All rights reserved.                                                   *
       4             :  *                                                                        *
       5             :  * Primary Authors:                                                       *
       6             :  *   Artur Szostak <artursz@iafrica.com>                                  *
       7             :  *                                                                        *
       8             :  * Permission to use, copy, modify and distribute this software and its   *
       9             :  * documentation strictly for non-commercial purposes is hereby granted   *
      10             :  * without fee, provided that the above copyright notice appears in all   *
      11             :  * copies and that both the copyright notice and this permission notice   *
      12             :  * appear in the supporting documentation. The authors make no claims     *
      13             :  * about the suitability of this software for any purpose. It is          *
      14             :  * provided "as is" without express or implied warranty.                  *
      15             :  **************************************************************************/
      16             : 
      17             : /* $Id$*/
      18             : 
      19             : ///
      20             : /// \file   AliMUONVRawStreamTracker.cxx
      21             : /// \author Artur Szostak <artursz@iafrica.com>
      22             : /// \date   28-11-2007
      23             : /// \brief  Implementation of the constructors and destructors for AliMUONVRawStreamTracker.
      24             : ///
      25             : 
      26             : //-----------------------------------------------------------------------------
      27             : /// \ingroup raw
      28             : /// \class AliMUONVRawStreamTracker
      29             : /// \brief This class is the base class for raw stream decoders than need to deal with
      30             : /// raw data coming from the muon tracking chambers.
      31             : ///
      32             : /// The classes that derive from this abstract class should loops over all MUON
      33             : /// digits in the raw data given by the AliRawReader.
      34             : /// The Next methods should be overridden so that they step through the all the
      35             : /// digits and return kFALSE or zero when done. kTRUE or the number of digits
      36             : /// decoded should be returned if any digits were actually found.
      37             : ///
      38             : /// \author Artur Szostak <artursz@iafrica.com>
      39             : //-----------------------------------------------------------------------------
      40             : 
      41             : #include "AliMUONVRawStreamTracker.h"
      42             : 
      43             : /// \cond CLASSIMP
      44          18 : ClassImp(AliMUONVRawStreamTracker)
      45             : /// \endcond
      46             : 
      47             : const Int_t AliMUONVRawStreamTracker::fgkMaxDDL = 20;
      48             : 
      49             : 
      50           0 : AliMUONVRawStreamTracker::AliMUONVRawStreamTracker() : AliMUONRawStream()
      51           0 : {
      52             :         ///
      53             :         /// Default constructor.
      54             :         ///
      55           0 : }
      56             : 
      57             : 
      58             : AliMUONVRawStreamTracker::AliMUONVRawStreamTracker(AliRawReader* rawReader) :
      59           0 :         AliMUONRawStream(rawReader)
      60           0 : {
      61             :         ///
      62             :         /// Constructor with AliRawReader as argument.
      63             :         ///
      64           0 : }
      65             : 
      66             : 
      67             : AliMUONVRawStreamTracker::~AliMUONVRawStreamTracker()
      68           0 : {
      69             :         ///
      70             :         /// Default destructor.
      71             :         ///
      72           0 : }

Generated by: LCOV version 1.11