// $Id$ //************************************************************************** //* This file is property of and copyright by the ALICE HLT Project * //* ALICE Experiment at CERN, All rights reserved. * //* * //* Primary Authors: Matthias Richter * //* for The ALICE HLT Project. * //* * //* Permission to use, copy, modify and distribute this software and its * //* documentation strictly for non-commercial purposes is hereby granted * //* without fee, provided that the above copyright notice appears in all * //* copies and that both the copyright notice and this permission notice * //* appear in the supporting documentation. The authors make no claims * //* about the suitability of this software for any purpose. It is * //* provided "as is" without express or implied warranty. * //************************************************************************** /** @file AliHLTQADataMakerSim.cxx @author Matthias Richter @date 2009-05-14 @brief Container for the HLT offline QA */ #include "AliHLTQADataMakerSim.h" /** ROOT macro for the implementation of ROOT specific class methods */ ClassImp(AliHLTQADataMakerSim) AliHLTQADataMakerSim::AliHLTQADataMakerSim() { // see header file for class documentation // or // refer to README to build package // or // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt } AliHLTQADataMakerSim::~AliHLTQADataMakerSim() { // see header file for class documentation } void AliHLTQADataMakerSim::StartOfDetectorCycle() { // see header file for class documentation } void AliHLTQADataMakerSim::EndOfDetectorCycle(AliQAv1::TASKINDEX_t, TObjArray** /*list*/) { // see header file for class documentation } void AliHLTQADataMakerSim::InitDigits() { // see header file for class documentation } void AliHLTQADataMakerSim::MakeDigits(TTree */*digitTree*/) { // see header file for class documentation } void AliHLTQADataMakerSim::MakeDigits(TClonesArray *) { // see header file for class documentation } void AliHLTQADataMakerSim::InitHits() { // see header file for class documentation } void AliHLTQADataMakerSim::MakeHits(TTree */*hitTree*/) { // see header file for class documentation } void AliHLTQADataMakerSim::MakeHits(TClonesArray *) { // see header file for class documentation } void AliHLTQADataMakerSim::InitSDigits() { // see header file for class documentation } void AliHLTQADataMakerSim::MakeSDigits(TTree* ) { // see header file for class documentation } void AliHLTQADataMakerSim::MakeSDigits(TClonesArray* ) { // see header file for class documentation }