source: trunk/examples/advanced/gammaray_telescope/include/GammaRayTelAnticoincidenceHit.hh@ 1036

Last change on this file since 1036 was 807, checked in by garnier, 18 years ago

update

File size: 4.3 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: GammaRayTelAnticoincidenceHit.hh,v 1.3 2006/06/29 15:54:57 gunter Exp $
28// GEANT4 tag $Name: $
29// ------------------------------------------------------------
30// GEANT 4 class header file
31// CERN Geneva Switzerland
32//
33//
34// ------------ GammaRayTelAnticoincidenceHit ------
35// by R.Giannitrapani, F.Longo & G.Santin (13 nov 2000)
36//
37// ************************************************************
38// This Class describe the hits on the Anticoincidence
39
40#ifndef GammaRayTelAnticoincidenceHit_h
41#define GammaRayTelAnticoincidenceHit_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 GammaRayTelAnticoincidenceHit : public G4VHit
52{
53public:
54
55 GammaRayTelAnticoincidenceHit();
56 ~GammaRayTelAnticoincidenceHit();
57 GammaRayTelAnticoincidenceHit(const GammaRayTelAnticoincidenceHit&);
58 const GammaRayTelAnticoincidenceHit& operator=(const
59 GammaRayTelAnticoincidenceHit&);
60 int operator==(const GammaRayTelAnticoincidenceHit&) const;
61
62 inline void* operator new(size_t);
63 inline void operator delete(void*);
64
65 void Draw();
66 void Print();
67
68private:
69
70 G4double EdepACD; // Energy deposited on the ACD tile
71 G4ThreeVector pos; // Position of the hit
72 G4int ACDTileNumber; // Number of the ACD tile
73 G4int IsACDPlane; // Type of the plane (0 top, 1 L-R, 2 F-R)
74
75public:
76
77 inline void AddEnergy(G4double de) {EdepACD += de;};
78 inline void SetACDTileNumber(G4int i) {ACDTileNumber = i;};
79 inline void SetACDType(G4int i) {IsACDPlane = i;};
80 inline void SetPos(G4ThreeVector xyz){ pos = xyz; }
81
82 inline G4double GetEdepACD() { return EdepACD; };
83 inline G4int GetACDTileNumber() { return ACDTileNumber; };
84 inline G4int GetACDType() {return IsACDPlane;};
85 inline G4ThreeVector GetPos() { return pos; };
86
87};
88
89//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
90
91typedef G4THitsCollection<GammaRayTelAnticoincidenceHit> GammaRayTelAnticoincidenceHitsCollection;
92
93extern G4Allocator<GammaRayTelAnticoincidenceHit> GammaRayTelAnticoincidenceHitAllocator;
94
95//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
96
97inline void* GammaRayTelAnticoincidenceHit::operator new(size_t)
98{
99 void* aHit;
100 aHit = (void*) GammaRayTelAnticoincidenceHitAllocator.MallocSingle();
101 return aHit;
102}
103
104//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
105
106inline void GammaRayTelAnticoincidenceHit::operator delete(void* aHit)
107{
108 GammaRayTelAnticoincidenceHitAllocator.FreeSingle((GammaRayTelAnticoincidenceHit*) aHit);
109}
110
111#endif
112
113
114
115
116
117
118
119
120
121
Note: See TracBrowser for help on using the repository browser.