]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliCaloRawAnalyzerFactory.h
New default for corrEmpty
[u/mrichter/AliRoot.git] / EMCAL / AliCaloRawAnalyzerFactory.h
CommitLineData
92d9f317 1// -*- mode: c++ -*-
2
3#ifndef ALICALORAWANALYZERFACTORY_H
4#define ALICALORAWANALYZERFACTORY_H
5
6/**************************************************************************
7 * This file is property of and copyright by the Experimental Nuclear *
8 * Physics Group, Yale University, US 2011 *
9 * *
10 * Author: Per Thomas Hille <perthomas.hille@yale.edu> for the ALICE *
11 * experiment. Contributors are mentioned in the code where appropriate. *
12 * Please report bugs to perthomas.hille@yale.edu *
13 * *
14 * Permission to use, copy, modify and distribute this software and its *
15 * documentation strictly for non-commercial purposes is hereby granted *
16 * without fee, provided that the above copyright notice appears in all *
17 * copies and that both the copyright notice and this permission notice *
18 * appear in the supporting documentation. The authors make no claims *
19 * about the suitability of this software for any purpose. It is *
20 * provided "as is" without express or implied warranty. *
21 **************************************************************************/
22
23#include "AliCaloConstants.h"
24using namespace Algo;
25
26class AliCaloRawAnalyzer;
27
28class AliCaloRawAnalyzerFactory
29{
ae0752da 30
92d9f317 31public:
ae0752da 32
33 virtual ~AliCaloRawAnalyzerFactory() { ; }
34
92d9f317 35 static AliCaloRawAnalyzer* CreateAnalyzer( const int algo );
36
37private:
ae0752da 38
92d9f317 39 AliCaloRawAnalyzerFactory();
ae0752da 40
92d9f317 41};
42
43#endif