]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/pendolino/AliHLTPendolinoLoggerDump.h
adding more default configurations
[u/mrichter/AliRoot.git] / HLT / pendolino / AliHLTPendolinoLoggerDump.h
CommitLineData
e58fb035 1//-*- Mode: C++ -*-
2// $Id$
3
4#ifndef ALI_HLT_PENDOLINO_LOGGER_DUMP_H
5#define ALI_HLT_PENDOLINO_LOGGER_DUMP_H
6//* This file is property of and copyright by the ALICE HLT Project *
7//* ALICE Experiment at CERN, All rights reserved. *
8//* See cxx source for full Copyright notice *
9
10/** @file AliHLTPendolinoLoggerDump.h
11 @author Sebastian Bablok
12 @date
13 @brief
14*/
15
16
17#include "AliHLTPendolinoLogger.h"
18
19
20
21/**
22 * Class that implements the interface for a Pendolino Logger and dumps
23 * the log messages. No output is made!
24 *
25 * @author Sebastian Bablok
26 *
27 * @date 2007-10-29
28 */
29class AliHLTPendolinoLoggerDump : public AliHLTPendolinoLogger {
30 public:
31
32 /**
33 * Constructor for AliHLTPendolinoLoggerDump
34 */
35 AliHLTPendolinoLoggerDump();
36
37 /**
38 * Destructor for AliHLTPendolinoLoggerDump
39 */
40 virtual ~AliHLTPendolinoLoggerDump();
41
42 /**
43 * Implementated logging interface
44 *
45 * @param detector the detector for which the log entry shall be made.
46 * @param msg the log message
47 */
48 virtual void log(const char* detector, const char* msg);
49
50 protected:
51
52 private:
53
54 ClassDef(AliHLTPendolinoLoggerDump, 0);
55};
56
57#endif
58