StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StjTPCTxt.h
1 // -*- mode: c++;-*-
2 // $Id: StjTPCTxt.h,v 1.1 2008/11/27 07:09:31 tai Exp $
3 // Copyright (C) 2008 Tai Sakuma <sakuma@bnl.gov>
4 #ifndef STJTPCTXT_H
5 #define STJTPCTXT_H
6 
7 #include "StjTPC.h"
8 
9 #include <fstream>
10 #include <string>
11 
12 class StjTPCTxt : public StjTPC {
13 
14 public:
15  StjTPCTxt(const char* path);
16  virtual ~StjTPCTxt() { }
17 
18  StjTrackList getTrackList();
19 
20 private:
21 
22  std::ifstream _dataFile;
23  long _currentEvent;
24  std::string _oldLine;
25 
26  ClassDef(StjTPCTxt, 1)
27 
28 };
29 
30 #endif // STJTPCTXT_H
Definition: StjTPC.h:12