G4TrajectoryContainer.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 // G4TrajectoryContainer
00031 //
00032 // Class description:
00033 //
00034 // This is a container of G4VTrajectory objects and the object of this
00035 // container will be associated to G4Event object.
00036 //
00037 
00038 // ********************************************************************
00039 #ifndef G4TrajectoryContainer_h
00040 #define G4TrajectoryContainer_h 1
00041 
00042 #include "globals.hh"
00043 #include "G4VTrajectory.hh"
00044 #include "G4Allocator.hh"
00045 #include <vector>
00046 
00047 typedef std::vector<G4VTrajectory*> TrajectoryVector;
00048 
00049 class G4TrajectoryContainer
00050 {
00051   public:
00052     G4TrajectoryContainer();
00053     ~G4TrajectoryContainer();
00054 
00055   private:
00056     G4TrajectoryContainer(const G4TrajectoryContainer&);
00057     G4TrajectoryContainer& operator=(const G4TrajectoryContainer&);
00058 
00059   public:
00060     inline void *operator new(size_t);
00061     inline void operator delete(void* anEvent);
00062 
00063     G4int operator==(const G4TrajectoryContainer& right) const;
00064     G4int operator!=(const G4TrajectoryContainer& right) const;
00065 
00066   public:
00067     inline size_t size() const { return vect->size(); }
00068     inline void push_back(G4VTrajectory* p) { vect->push_back(p); }
00069     inline G4int entries() const { return size(); }
00070     inline G4bool insert(G4VTrajectory* p) { push_back(p); return true; }
00071     inline void clearAndDestroy()
00072     {
00073       for(size_t i=0;i<size();i++) delete (*vect)[i];
00074       vect->clear();
00075     }
00076     inline G4VTrajectory* operator[](size_t n) { return (*vect)[n]; }
00077     inline TrajectoryVector* GetVector() const { return vect; }
00078 
00079   private:
00080     TrajectoryVector* vect;
00081 };
00082 
00083 #if defined G4EVENT_ALLOC_EXPORT
00084   extern G4DLLEXPORT G4Allocator<G4TrajectoryContainer> aTrajectoryContainerAllocator;
00085 #else
00086   extern G4DLLIMPORT G4Allocator<G4TrajectoryContainer> aTrajectoryContainerAllocator;
00087 #endif
00088 
00089 inline void* G4TrajectoryContainer::operator new(size_t)
00090 {
00091   void* aTrajectoryContainer;
00092   aTrajectoryContainer = (void*)aTrajectoryContainerAllocator.MallocSingle();
00093   return aTrajectoryContainer;
00094 }
00095 
00096 inline void G4TrajectoryContainer::operator delete(void* aTrajectoryContainer)
00097 {
00098   aTrajectoryContainerAllocator.FreeSingle((G4TrajectoryContainer*)aTrajectoryContainer);
00099 }
00100 
00101 
00102 #endif

Generated on Mon May 27 17:50:01 2013 for Geant4 by  doxygen 1.4.7