source: trunk/source/digits_hits/detector/include/G4VPrimitiveScorer.hh @ 1337

Last change on this file since 1337 was 1337, checked in by garnier, 14 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 4.6 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26//
27// $Id: G4VPrimitiveScorer.hh,v 1.3 2007/08/28 07:51:45 asaim Exp $
28// GEANT4 tag $Name: geant4-09-04-beta-01 $
29//
30
31#ifndef G4VPrimitiveScorer_h
32#define G4VPrimitiveScorer_h 1
33
34class G4Step;
35class G4HCofThisEvent;
36class G4TouchableHistory;
37#include "globals.hh"
38#include "G4VSDFilter.hh"
39#include "G4MultiFunctionalDetector.hh"
40
41// class description:
42//
43//  This is the base class of the sensitive detector which owns
44// only one hits collection.
45//  A concrete class object derived from this base class can be
46// used either as a sensitive detector or to be registered to
47// G4MultiFunctionalDetector to define multiple functionalities.
48
49class G4VPrimitiveScorer
50{
51  friend class G4MultiFunctionalDetector;
52
53  public: // with description
54      G4VPrimitiveScorer(G4String name, G4int depth=0);
55      virtual ~G4VPrimitiveScorer();
56
57  protected: // with description
58      virtual G4bool ProcessHits(G4Step*,G4TouchableHistory*)=0;
59      // This is the method must be implemented in each concrete class.
60
61      virtual G4int GetIndex(G4Step*);
62      // This is a function mapping from copy number(s) to an index of
63      // the hit collection. In the default implementation, just the
64      // copy number of the physical volume is taken.
65
66  public: // with description
67      G4int GetCollectionID(G4int);
68      // This method returns the ID of its hitsCollection. This mehod
69      // gives valid value only after it is registered to G4MultiFunctionalDetector
70      // and the G4MultiFunctionalDetector is registered to G4SDManager.
71
72      virtual void Initialize(G4HCofThisEvent*);
73      virtual void EndOfEvent(G4HCofThisEvent*);
74      virtual void clear();
75      virtual void DrawAll();
76      virtual void PrintAll();
77      // These five methods are exactly identical to those in G4VSensitiveDetector.
78      // These methods are invoked by G4SDManager through G4MultiFunctionalDetector.
79
80  protected:
81      G4String primitiveName;
82      G4MultiFunctionalDetector* detector;
83      G4VSDFilter* filter;
84      G4int verboseLevel;
85      G4int indexDepth;
86
87  public: // with description
88      // Set/Get methods
89      inline void SetMultiFunctionalDetector(G4MultiFunctionalDetector* d)
90      { detector = d; }
91      inline G4MultiFunctionalDetector* GetMultiFunctionalDetector() const
92      { return detector; }
93      inline G4String GetName() const
94      { return primitiveName; }
95      inline void SetFilter(G4VSDFilter* f)
96      { filter = f; }
97      inline G4VSDFilter* GetFilter() const
98      { return filter; }
99      inline void SetVerboseLevel(G4int vl)
100      { verboseLevel = vl; }
101      inline G4int GetVerboseLevel() const
102      { return verboseLevel; }
103
104  private:
105      inline G4bool HitPrimitive(G4Step*aStep,G4TouchableHistory*ROhis)
106      {
107        if(filter)
108        { if(!(filter->Accept(aStep))) return false; }
109        return ProcessHits(aStep,ROhis);
110      }
111 
112  protected:
113     G4int fNi, fNj, fNk; // used for 3D scorers
114  public:
115     inline void SetNijk(G4int i,G4int j,G4int k)
116     { fNi = i; fNj = j; fNk = k; }
117};
118
119
120
121#endif
122
Note: See TracBrowser for help on using the repository browser.