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

          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             : /// \class AliMUONVRawStreamTrigger
      20             : ///
      21             : /// This base class defines what interface all MUON trigger raw data decoders
      22             : /// must implement. Thus all trigger decoders inherit from this class.
      23             : /// This class is an abstract class.
      24             : ///
      25             : /// \author Artur Szostak <artursz@iafrica.com>
      26             : 
      27             : #include "AliMUONVRawStreamTrigger.h"
      28             : #include "AliRawReader.h"
      29             : #include <cassert>
      30             : 
      31             : /// \cond CLASSIMP
      32          18 : ClassImp(AliMUONVRawStreamTrigger)
      33             : /// \endcond
      34             : 
      35             : //___________________________________________
      36             : AliMUONVRawStreamTrigger::AliMUONVRawStreamTrigger()
      37           9 :         : AliMUONRawStream()
      38          27 : {
      39             :         ///
      40             :         /// Create a base object to read MUON raw triggers
      41             :         /// Default constructor for monitoring purposes.
      42             :         ///
      43           9 : }
      44             : 
      45             : //_________________________________________________________________
      46             : AliMUONVRawStreamTrigger::AliMUONVRawStreamTrigger(AliRawReader* rawReader)
      47           0 :         : AliMUONRawStream(rawReader)
      48           0 : {
      49             :         ///
      50             :         /// Constructor with AliRawReader as argument
      51             :         /// for reconstruction purpose.
      52             :         ///
      53           0 : }
      54             : 
      55             : //___________________________________
      56             : AliMUONVRawStreamTrigger::~AliMUONVRawStreamTrigger()
      57           0 : {
      58             :         ///
      59             :         /// Default destructor
      60             :         ///
      61          10 : }
      62             : 

Generated by: LCOV version 1.11