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