G4VDigiCollection.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 G4VDigiCollection_h
00031 #define G4VDigiCollection_h 1
00032 
00033 class G4VDigi;
00034 #include "globals.hh"
00035 
00036 // class description:
00037 //
00038 //  This is the base class of digi collection. The user is advised to
00039 // use G4TDigiCollection 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 G4VDigiCollection 
00046 {
00047   public:
00048       G4VDigiCollection();
00049       G4VDigiCollection(G4String DMnam,G4String colNam);
00050       virtual ~G4VDigiCollection();
00051       G4int operator==(const G4VDigiCollection &right) const;
00052 
00053       virtual void DrawAllDigi();
00054       virtual void PrintAllDigi();
00055 
00056   protected:
00057 
00058       // Collection name
00059       G4String collectionName;
00060       G4String DMname;
00061 
00062   public:
00063       inline G4String GetName()
00064       { return collectionName; };
00065       inline G4String GetDMname()
00066       { return DMname; };
00067 
00068   public:
00069       // GetDigi and GetSize are given a default implementation here so
00070       // that the template G4TDigiCollection can be used, but they
00071       // are re-implemented in G4TDigiCollection.
00072       virtual G4VDigi* GetDigi(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:11 2013 for Geant4 by  doxygen 1.4.7