00001 // 00002 // ******************************************************************** 00003 // * License and Disclaimer * 00004 // * * 00005 // * The Geant4 software is copyright of the Copyright Holders of * 00006 // * the Geant4 Collaboration. It is provided under the terms and * 00007 // * conditions of the Geant4 Software License, included in the file * 00008 // * LICENSE and available at http://cern.ch/geant4/license . These * 00009 // * include a list of copyright holders. * 00010 // * * 00011 // * Neither the authors of this software system, nor their employing * 00012 // * institutes,nor the agencies providing financial support for this * 00013 // * work make any representation or warranty, express or implied, * 00014 // * regarding this software system or assume any liability for its * 00015 // * use. Please see the license in the file LICENSE and URL above * 00016 // * for the full disclaimer and the limitation of liability. * 00017 // * * 00018 // * This code implementation is the result of the scientific and * 00019 // * technical work of the GEANT4 collaboration. * 00020 // * By using, copying, modifying or distributing the software (or * 00021 // * any work based on the software) you agree to acknowledge its * 00022 // * use in resulting scientific publications, and indicate your * 00023 // * acceptance of all terms of the Geant4 Software license. * 00024 // ******************************************************************** 00025 // 00026 // File: G4VTransactionManager.hh 00027 // 00028 // History: 00029 // 01.07.18 Youhei Morita Initial creation (with "fadsclass") 00030 00031 #ifndef V_TRANSACTION_MANAGER_HH 00032 #define V_TRANSACTION_MANAGER_HH 1 00033 00034 #include "G4Types.hh" 00035 #include <string> 00036 00037 // Class Description: 00038 // Abstract base class for starting and commiting or aborting data transaction 00039 00040 class G4VTransactionManager 00041 { 00042 public: // With description 00043 G4VTransactionManager() : m_verbose(0) {}; 00044 // Constructor 00045 00046 virtual ~G4VTransactionManager() {}; 00047 // Destructor 00048 00049 public: // With description 00050 void SetVerboseLevel(int v) { m_verbose = v; }; 00051 // Set verbose level. 00052 00053 virtual G4bool SelectReadFile(std::string obj, std::string file)=0; 00054 // Set the input file name and open it for the object type "obj". 00055 00056 virtual G4bool SelectWriteFile(std::string obj, std::string file)=0; 00057 // Set the output file name and open it for the object type "obj". 00058 00059 virtual G4bool StartUpdate()=0; 00060 // Start an update transaction for event store and retrieve 00061 00062 virtual G4bool StartRead()=0; 00063 // Start a read-only transaction for event store and retrieve 00064 00065 virtual void Commit()=0; 00066 // commit the transaction for event store and retrieve 00067 00068 virtual void Abort()=0; 00069 // abort the transaction for event store and retrieve 00070 00071 protected: 00072 G4int m_verbose; 00073 00074 }; // End of class G4VTransactionManager 00075 00076 #endif 00077