Warning, /include/Geant4/tools/wroot/imt_ntuple is written in an unsupported language. File is not indexed.
0001 // Copyright (C) 2010, Guy Barrand. All rights reserved.
0002 // See the file tools.license for terms.
0003
0004 #ifndef tools_wroot_imt_ntuple
0005 #define tools_wroot_imt_ntuple
0006
0007 // mt = multi-threads.
0008
0009 #include "imutex"
0010 #include "ifile"
0011
0012 namespace tools {
0013 namespace wroot {
0014
0015 class imt_ntuple {
0016 public:
0017 virtual bool add_row(imutex&,ifile&) = 0;
0018 virtual bool end_fill(imutex&,ifile&) = 0;
0019 public:
0020 virtual ~imt_ntuple() {}
0021 };
0022
0023 }}
0024
0025 #endif