]> git.uio.no Git - u/mrichter/AliRoot.git/blame - START/AliSTARTv1.h
Digits and reconstruction with TObject
[u/mrichter/AliRoot.git] / START / AliSTARTv1.h
CommitLineData
bc46b572 1#ifndef STARTV1_H
2#define STARTV1_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// Manager and hits classes for set:START //
9////////////////////////////////////////////////
10
11#include "AliSTART.h"
12
13class AliSTARTv1 : public AliSTART {
14
15public:
16 AliSTARTv1() {};
17 AliSTARTv1(const char *name, const char *title);
18 virtual ~AliSTARTv1() {}
19 virtual void CreateGeometry();
20 virtual void CreateMaterials();
21 virtual void DrawDetector();
22 virtual void Init();
23 virtual Int_t IsVersion() const {return 0;}
24 virtual void StepManager();
25
26protected:
27 Int_t fIdSens1; // Sensetive volume in START
28
f3ed336b 29 ClassDef(AliSTARTv1,1) //Class for START version 1
bc46b572 30};
31
32#endif
33
34