G4VHitsCollection.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 #ifndef G4VHitsCollection_h
00031 #define G4VHitsCollection_h 1
00032 
00033 class G4VHit;
00034 #include "globals.hh"
00035 
00036 // class description:
00037 //
00038 //  This is the base class of hits collection. The user is advised to
00039 // use G4THitsCollection template class in case his/her collection is
00040 // transient. While, in case the collection is persistent with ODBMS,
00041 // the concrete collection class can be directly derived from this
00042 // class.
00043 //  Geant4 kernel will use this class methods.
00044 
00045 class G4VHitsCollection 
00046 {
00047   public:
00048       G4VHitsCollection();
00049       G4VHitsCollection(G4String detName,G4String colNam);
00050       virtual ~G4VHitsCollection();
00051       G4int operator==(const G4VHitsCollection &right) const;
00052 
00053       virtual void DrawAllHits();
00054       virtual void PrintAllHits();
00055 
00056   protected:
00057 
00058       // Collection name
00059       G4String collectionName;
00060       G4String SDname;
00061 
00062   public:
00063       inline G4String GetName()
00064       { return collectionName; }
00065       inline G4String GetSDname()
00066       { return SDname; }
00067 
00068   public:
00069       // GetHit and GetSize are given a default implementation here so
00070       // that the template G4THitsCollection can be used, but they
00071       // are re-implemented G4THitsCollection.
00072       virtual G4VHit* GetHit(size_t) const { return 0; } 
00073       virtual size_t GetSize() const { return 0; };
00074 
00075 };
00076 
00077 #endif
00078 

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