]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONQAChecker.cxx
Removing an AliInfo
[u/mrichter/AliRoot.git] / MUON / AliMUONQAChecker.cxx
CommitLineData
8aa336b1 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
bf4d93eb 16// $Id$
17
8aa336b1 18#include "AliQAChecker.h"
19#include "AliMUONQAChecker.h"
20
21//-----------------------------------------------------------------------------
22/// \class AliMUONQAChecker
23///
24/// MUON base class for quality assurance checker
25///
26/// \author C. Finck
27//-----------------------------------------------------------------------------
28
29/// \cond CLASSIMP
30ClassImp(AliMUONQAChecker)
31/// \endcond
32
33//__________________________________________________________________
34AliMUONQAChecker::AliMUONQAChecker() :
35 AliQACheckerBase("MUON","MUON Quality Assurance Data Maker")
36{
37/// ctor
38
39}
40
41//__________________________________________________________________
42AliMUONQAChecker::~AliMUONQAChecker()
43{
44/// dtor
45}
46
47//__________________________________________________________________
48AliMUONQAChecker::AliMUONQAChecker(const AliMUONQAChecker& qac) :
49 AliQACheckerBase(qac.GetName(), qac.GetTitle())
50{
51/// copy ctor
52
53}
54
55//__________________________________________________________________
56AliMUONQAChecker& AliMUONQAChecker::operator = (const AliMUONQAChecker& /*qac*/ )
57{
58 /// Equal operator.
59 return *this;
60}
61