]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/PHOS-HTML/AliPHOS.h
The web becomes richer
[u/mrichter/AliRoot.git] / PHOS / PHOS-HTML / AliPHOS.h
CommitLineData
29c81279 1#ifndef ALIPHOS_H
2#define ALIPHOS_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8//_________________________________________________________________________
9// Base Class for PHOS
10//
11//*-- Author: Laurent Aphecetche & Yves Schutz (SUBATECH)
12
13// --- ROOT system ---
14
15// --- AliRoot header files ---
16
17#include "AliDetector.h"
18#include "AliPHOSGeometry.h"
19
20
21class AliPHOS : public AliDetector {
22
23 public:
24
25 AliPHOS(const char* name, const char* title): AliDetector(name,title) {}
26 AliPHOS() : AliDetector() {}
27 virtual ~AliPHOS() ;
28
29 virtual void CreateMaterials() ; // defines the material of the detector
30 virtual AliPHOSGeometry * GetGeometry() = 0 ; // hands the pointer to the unique geometry object
31
32 ClassDef(AliPHOS,2) // Photon Spectrometer Detector (base class)
33
34} ;
35
36#endif // ALIPHOS_H