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