]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSSurvey1.h
Added a new class AliPHOSSurvet1 which read survey data from EDMS files
[u/mrichter/AliRoot.git] / PHOS / AliPHOSSurvey1.h
CommitLineData
42c5218a 1#ifndef ALIPHOSSURVEY1_H
2#define ALIPHOSSURVEY1_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7/* $Id$ */
8
9/* History of cvs commits:
10 *
11 * $Log$
12 */
13
14#include "AliPHOSSurvey.h"
15
16// AliPHOSSurvey1 class is survey "reader" class
17// based on AliSurveyObj class.
18
19class AliPHOSSurvey1 : public AliPHOSSurvey {
20public:
21 AliPHOSSurvey1(const TString &surveyFileName, const TString &namePrefix);
22 virtual ~AliPHOSSurvey1();
23
24private:
25 enum EHardcoded {kNumberOfPoints = 452, kStartingPoint = 4};
26
27 AliPHOSSurvey1(const AliPHOSSurvey1 &rhs);
28 AliPHOSSurvey1 &operator = (const AliPHOSSurvey1 &rhs);
29
30 ClassDef(AliPHOSSurvey1, 1) //Data reader, based on AliSurveyObj
31};
32
33#endif