Ignore:
Timestamp:
Nov 16, 2009, 5:03:28 PM (15 years ago)
Author:
garnier
Message:

update contre CVS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/visualization/modeling/include/G4PSHitsModel.hh

    r1141 r1171  
    2525//
    2626//
    27 // $Id: G4PSHitsModel.hh,v 1.3 2009/10/22 07:35:06 akimura Exp $
     27// $Id: G4PSHitsModel.hh,v 1.4 2009/11/04 12:44:39 allison Exp $
    2828// GEANT4 tag $Name:  $
    2929//
     
    3939#include "G4VModel.hh"
    4040
    41 class G4VHit;
     41template <typename T> class G4THitsMap;
    4242
    4343class G4PSHitsModel: public G4VModel {
     
    4545public: // With description
    4646
    47   G4PSHitsModel ();
     47  G4PSHitsModel (const G4String& requestedMapName = "all");
    4848   
    4949  virtual ~G4PSHitsModel ();
     
    5252  // The main task of a model is to describe itself to the graphics scene.
    5353
    54   const G4VHit* GetCurrentHit() const
    55   {return kpCurrentHit;}
     54  const G4THitsMap<G4double>* GetCurrentHits() const
     55  {return fpCurrentHits;}
    5656
    5757private:
    5858
    59   const G4VHit* kpCurrentHit;
     59  G4String fRequestedMapName;
     60  const G4THitsMap<G4double>* fpCurrentHits;
    6061};
    6162
Note: See TracChangeset for help on using the changeset viewer.