G4ProcTblElement.hh

Go to the documentation of this file.
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 //
00027 // $Id$
00028 //
00029 // 
00030 // ------------------------------------------------------------
00031 //      GEANT 4 class header file 
00032 //
00033 //      History: first implementation, based on object model of
00034 //      4th Aug 1998, H.Kurashige
00035 // ------------------------------------------------------------
00036 //   Use STL vector instead of RW vector    1. Mar 00 H.Kurashige
00037 //
00038 // Class Description  
00039 //  This class is used by G4ProcessTable ONLY for booking !!!
00040 //
00041 
00042 #ifndef G4ProcTblElement_h
00043 #define G4ProcTblElement_h 1
00044 
00045 #include "globals.hh"
00046 #include "G4ios.hh"
00047 #include <vector>
00048 
00049 #include "G4ParticleDefinition.hh"
00050 #include "G4VProcess.hh"
00051 #include "G4ProcessManager.hh"
00052 
00053 class G4ProcTblElement
00054 {
00055   // this class is used by G4ProcessTable ONLY for booking !!!
00056   friend class G4ProcessTable;
00057   protected:
00058     G4ProcTblElement();
00059 
00060   public:
00061     G4ProcTblElement(const G4ProcTblElement& right);
00062     G4ProcTblElement(G4VProcess* aProcess);
00063     //  Constructors
00064 
00065     ~G4ProcTblElement();
00066     //  Destructor
00067 
00068     G4ProcTblElement & operator=(const G4ProcTblElement &right);
00069     // Assignment operator
00070 
00071     G4int operator==(const G4ProcTblElement &right) const;
00072     G4int operator!=(const G4ProcTblElement &right) const;
00073     // equal / unequal operator
00074 
00075   protected:
00076     // Use STL Vector 
00077     typedef std::vector<G4ProcessManager*> G4ProcMgrVector;
00078 
00079     G4int Length() const ;
00080     void  Insert(G4ProcessManager* aProcMgr);
00081     void  Remove(G4ProcessManager* aProcMgr);
00082 
00083     G4VProcess*       GetProcess() const;
00084     const G4String&   GetProcessName() const;
00085  
00086     G4ProcessManager* GetProcessManager(G4int index) const;
00087 
00088     inline 
00089      const G4ProcMgrVector*   GetProcMgrVector() const
00090       { return pProcMgrVector;}
00091   
00092     G4int      GetIndex(const G4ProcessManager* pManager) const ;
00093     G4bool     Contains(const G4ProcessManager* pManager) const ;
00094 
00095   private:
00096     G4VProcess*       pProcess;
00097     // pointer to G4VProcess
00098 
00099     G4ProcMgrVector*  pProcMgrVector;
00100 };
00101 
00102 #include "G4ProcTblElement.icc"
00103 #endif
00104 
00105 
00106 
00107 

Generated on Mon May 27 17:49:26 2013 for Geant4 by  doxygen 1.4.7