]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONQAChecker.cxx
remoe duplicate QA initialisation and do ESD QA for same detectors as RecPoint QA
[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
16#include "AliQAChecker.h"
17#include "AliMUONQAChecker.h"
18
19//-----------------------------------------------------------------------------
20/// \class AliMUONQAChecker
21///
22/// MUON base class for quality assurance checker
23///
24/// \author C. Finck
25//-----------------------------------------------------------------------------
26
27/// \cond CLASSIMP
28ClassImp(AliMUONQAChecker)
29/// \endcond
30
31//__________________________________________________________________
32AliMUONQAChecker::AliMUONQAChecker() :
33 AliQACheckerBase("MUON","MUON Quality Assurance Data Maker")
34{
35/// ctor
36
37}
38
39//__________________________________________________________________
40AliMUONQAChecker::~AliMUONQAChecker()
41{
42/// dtor
43}
44
45//__________________________________________________________________
46AliMUONQAChecker::AliMUONQAChecker(const AliMUONQAChecker& qac) :
47 AliQACheckerBase(qac.GetName(), qac.GetTitle())
48{
49/// copy ctor
50
51}
52
53//__________________________________________________________________
54AliMUONQAChecker& AliMUONQAChecker::operator = (const AliMUONQAChecker& /*qac*/ )
55{
56 /// Equal operator.
57 return *this;
58}
59