]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSSurvey1.h
"no RCU specified" option added in constructors.
[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$
d7a07f57 12 * Revision 1.1 2007/07/10 12:41:38 kharlov
13 * Added a new class AliPHOSSurvet1 which read survey data from EDMS files
14 *
42c5218a 15 */
16
d7a07f57 17// A survey "reader" class, based on AliSurveyObj class.
18// The source of input data is a text file in a standartized format
19// downloaded from EDMS
20
42c5218a 21#include "AliPHOSSurvey.h"
22
23// AliPHOSSurvey1 class is survey "reader" class
24// based on AliSurveyObj class.
25
26class AliPHOSSurvey1 : public AliPHOSSurvey {
27public:
28 AliPHOSSurvey1(const TString &surveyFileName, const TString &namePrefix);
29 virtual ~AliPHOSSurvey1();
30
31private:
32 enum EHardcoded {kNumberOfPoints = 452, kStartingPoint = 4};
33
34 AliPHOSSurvey1(const AliPHOSSurvey1 &rhs);
35 AliPHOSSurvey1 &operator = (const AliPHOSSurvey1 &rhs);
36
37 ClassDef(AliPHOSSurvey1, 1) //Data reader, based on AliSurveyObj
38};
39
40#endif