]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - VZERO/AliVZEROdigit.h
New coordinate system
[u/mrichter/AliRoot.git] / VZERO / AliVZEROdigit.h
... / ...
CommitLineData
1#ifndef ALIVZERODIGIT_H
2#define ALIVZERODIGIT_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#include "AliDigit.h"
9
10//___________________________________________
11class AliVZEROdigit: public AliDigit {
12
13 public:
14 AliVZEROdigit() {}
15 AliVZEROdigit(Int_t* tracks, Int_t* digits);
16 virtual ~AliVZEROdigit() {}
17
18 private:
19 Int_t fEvent; // Event number
20 Int_t fTrack; // Track number
21
22 ClassDef(AliVZEROdigit,1) //Digit (Header) object for set : VZERO
23};
24
25#endif