]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/QA/AliHLTQADataMakerSim.cxx
Update master to aliroot
[u/mrichter/AliRoot.git] / HLT / QA / AliHLTQADataMakerSim.cxx
CommitLineData
341aab10 1// $Id$
ed292d06 2
3//**************************************************************************
4//* This file is property of and copyright by the ALICE HLT Project *
5//* ALICE Experiment at CERN, All rights reserved. *
6//* *
7//* Primary Authors: Matthias Richter <Matthias.Richter@ift.uib.no> *
8//* for The ALICE HLT Project. *
9//* *
10//* Permission to use, copy, modify and distribute this software and its *
11//* documentation strictly for non-commercial purposes is hereby granted *
12//* without fee, provided that the above copyright notice appears in all *
13//* copies and that both the copyright notice and this permission notice *
14//* appear in the supporting documentation. The authors make no claims *
15//* about the suitability of this software for any purpose. It is *
16//* provided "as is" without express or implied warranty. *
17//**************************************************************************
18
19/** @file AliHLTQADataMakerSim.cxx
20 @author Matthias Richter
21 @date 2009-05-14
22 @brief Container for the HLT offline QA
23*/
24#include "AliHLTQADataMakerSim.h"
25
26/** ROOT macro for the implementation of ROOT specific class methods */
27ClassImp(AliHLTQADataMakerSim)
28
29AliHLTQADataMakerSim::AliHLTQADataMakerSim()
30{
31 // see header file for class documentation
32 // or
33 // refer to README to build package
34 // or
35 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
36}
37
38AliHLTQADataMakerSim::~AliHLTQADataMakerSim()
39{
40 // see header file for class documentation
41}
42
43void AliHLTQADataMakerSim::StartOfDetectorCycle()
44{
45 // see header file for class documentation
46}
47
48void AliHLTQADataMakerSim::EndOfDetectorCycle(AliQAv1::TASKINDEX_t, TObjArray** /*list*/)
49{
50 // see header file for class documentation
51}
52
53void AliHLTQADataMakerSim::InitDigits()
54{
55 // see header file for class documentation
56}
57
58void AliHLTQADataMakerSim::MakeDigits(TTree */*digitTree*/)
59{
60 // see header file for class documentation
61}
62
63void AliHLTQADataMakerSim::MakeDigits(TClonesArray *)
64{
65 // see header file for class documentation
66}
67
68void AliHLTQADataMakerSim::InitHits()
69{
70 // see header file for class documentation
71}
72
73void AliHLTQADataMakerSim::MakeHits(TTree */*hitTree*/)
74{
75 // see header file for class documentation
76}
77
78void AliHLTQADataMakerSim::MakeHits(TClonesArray *)
79{
80 // see header file for class documentation
81}
82
83void AliHLTQADataMakerSim::InitSDigits()
84{
85 // see header file for class documentation
86}
87
88void AliHLTQADataMakerSim::MakeSDigits(TTree* )
89{
90 // see header file for class documentation
91}
92
93void AliHLTQADataMakerSim::MakeSDigits(TClonesArray* )
94{
95 // see header file for class documentation
96}