source: trunk/examples/advanced/gammaray_telescope/include/GammaRayTelTrackerHit.hh@ 1229

Last change on this file since 1229 was 807, checked in by garnier, 17 years ago

update

File size: 4.2 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: GammaRayTelTrackerHit.hh,v 1.3 2006/06/29 15:55:58 gunter Exp $
28// GEANT4 tag $Name: $
29// ------------------------------------------------------------
30// GEANT 4 class header file
31// CERN Geneva Switzerland
32//
33//
34// ------------ GammaRayTelTrackerHit ------
35// by R.Giannitrapani, F.Longo & G.Santin (13 nov 2000)
36//
37// ************************************************************
38// This Class describe the hits on the Tracker
39
40#ifndef GammaRayTelTrackerHit_h
41#define GammaRayTelTrackerHit_h 1
42
43#include "G4VHit.hh"
44#include "G4THitsCollection.hh"
45#include "G4Allocator.hh"
46#include "G4ThreeVector.hh"
47
48
49//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
50
51class GammaRayTelTrackerHit : public G4VHit
52{
53public:
54
55 GammaRayTelTrackerHit();
56 ~GammaRayTelTrackerHit();
57 GammaRayTelTrackerHit(const GammaRayTelTrackerHit&);
58 const GammaRayTelTrackerHit& operator=(const GammaRayTelTrackerHit&);
59 int operator==(const GammaRayTelTrackerHit&) const;
60
61 inline void* operator new(size_t);
62 inline void operator delete(void*);
63
64 void Draw();
65 void Print();
66
67private:
68
69 G4double EdepSil; // Energy deposited on the silicon strip
70 G4ThreeVector pos; // Position of the hit
71 G4int NStrip; // Number of the strip
72 G4int NSilPlane; // Number of the plane
73 G4int IsXPlane; // Type of the plane (1 X, 0 Y)
74
75public:
76
77 inline void AddSil(G4double de) {EdepSil += de;};
78 inline void SetNStrip(G4int i) {NStrip = i;};
79 inline void SetNSilPlane(G4int i) {NSilPlane = i;};
80 inline void SetPlaneType(G4int i) {IsXPlane = i;};
81 inline void SetPos(G4ThreeVector xyz){ pos = xyz; }
82
83 inline G4double GetEdepSil() { return EdepSil; };
84 inline G4int GetNStrip() { return NStrip; };
85 inline G4int GetNSilPlane() { return NSilPlane; };
86 inline G4int GetPlaneType() {return IsXPlane;};
87 inline G4ThreeVector GetPos() { return pos; };
88
89};
90
91//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
92
93typedef G4THitsCollection<GammaRayTelTrackerHit> GammaRayTelTrackerHitsCollection;
94
95extern G4Allocator<GammaRayTelTrackerHit> GammaRayTelTrackerHitAllocator;
96
97//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
98
99inline void* GammaRayTelTrackerHit::operator new(size_t)
100{
101 void* aHit;
102 aHit = (void*) GammaRayTelTrackerHitAllocator.MallocSingle();
103 return aHit;
104}
105
106//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
107
108inline void GammaRayTelTrackerHit::operator delete(void* aHit)
109{
110 GammaRayTelTrackerHitAllocator.FreeSingle((GammaRayTelTrackerHit*) aHit);
111}
112
113#endif
114
115
116
117
118
119
120
121
122
Note: See TracBrowser for help on using the repository browser.