~christopher-hunt08/maus/maus_integrated_kalman

« back to all changes in this revision

Viewing changes to src/input/InputCppDAQOfflineData/InputCppDAQOfflineData.hh

  • Committer: Durga Rajaram
  • Date: 2014-07-16 15:13:05 UTC
  • mfrom: (659.1.92 cand)
  • Revision ID: durga@fnal.gov-20140716151305-q27rv1y9p03v9lks
Tags: MAUS-v0.9, MAUS-v0.9.0
MAUS-v0.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
  *
38
38
  * This is the constructor for InputCppDAQOfflineData.
39
39
  */
40
 
  InputCppDAQOfflineData(std::string pDataPath = "", std::string pFilename = "");
 
40
  InputCppDAQOfflineData();
 
41
 
 
42
 private:
41
43
 
42
44
  /** Initialise the Unpacker.
43
45
  *
45
47
  *
46
48
  * \return True if at least one file was opened sucessfully.
47
49
  */
48
 
  bool birth(std::string pJSONConfig);
 
50
  void _birth(const std::string& pJSONConfig);
49
51
 
50
52
  /** Read the next event from the file into memory.
51
53
  *
56
58
  */
57
59
  bool readNextEvent();
58
60
 
59
 
 private:
60
 
 
61
61
  /** File manager object. */
62
62
  MDfileManager _dataFileManager;
63
63