StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StjBEMC.h
1 // -*- mode: c++;-*-
2 // $Id: StjBEMC.h,v 1.1 2008/11/27 07:35:21 tai Exp $
3 // Copyright (C) 2008 Tai Sakuma <sakuma@bnl.gov>
4 #ifndef STJBEMC_H
5 #define STJBEMC_H
6 
7 #include <TObject.h>
8 
9 #include "StjTowerEnergyList.h"
10 
11 class StjBEMC : public TObject {
12 
13 public:
14  StjBEMC() { }
15  virtual ~StjBEMC() { }
16 
17  virtual void Init() { }
18 
19  virtual StjTowerEnergyList getEnergyList() = 0;
20 
21  ClassDef(StjBEMC, 1)
22 
23 };
24 
25 #endif // STJBEMC_H