Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
parallel/TopC/ParN04/include/ExN04MuonHit.hh
Go to the documentation of this file.
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 // $Id: ExN04MuonHit.hh 66587 2012-12-21 11:06:44Z ihrivnac $
27 //
28 /// \file parallel/ParN04/include/ExN04MuonHit.hh
29 /// \brief Definition of the ExN04MuonHit class
30 //
31 
32 #ifndef ExN04MuonHit_h
33 #define ExN04MuonHit_h 1
34 
35 //MSH_include_begin
36 #include "MarshaledG4String.h"
37 //MSH_include_end
38 
39 #include "G4VHit.hh"
40 #include "G4THitsCollection.hh"
41 #include "G4Allocator.hh"
42 #include "G4ThreeVector.hh"
43 
44 //MSH_BEGIN
45 class ExN04MuonHit : public G4VHit
46 {
47  public:
48 
49  ExN04MuonHit();
50  ~ExN04MuonHit();
53  G4int operator==(const ExN04MuonHit &right) const;
54 
55 
56  inline void *operator new(size_t);
57  inline void operator delete(void *aHit);
58 
59  void Draw();
60  void Print();
61 
62  private:
63 
64 
65  G4double edep; /*MSH: primitive
66  [elementGet: { $ELEMENT = $THIS->GetEdep(); }]
67  [elementSet: { $THIS->SetEdep($ELEMENT); }]*/
68 
69 
70 
71  G4ThreeVector pos; /*MSH: primitive
72  [elementGet: { $ELEMENT = $THIS->GetPos(); }]
73  [elementSet: { $THIS->SetPos($ELEMENT); }] */
74 
75 
76  public:
77  inline void SetEdep(G4double de)
78  { edep = de; }
79  inline void AddEdep(G4double de)
80  { edep += de; }
81  inline G4double GetEdep()
82  { return edep; }
83  inline void SetPos(G4ThreeVector xyz)
84  { pos = xyz; }
86  { return pos; }
87 
88 };
89 //MSH_END
90 
92 
94 
95 inline void* ExN04MuonHit::operator new(size_t)
96 {
97  void *aHit;
98  aHit = (void *) ExN04MuonHitAllocator.MallocSingle();
99  return aHit;
100 }
101 
102 inline void ExN04MuonHit::operator delete(void *aHit)
103 {
104  ExN04MuonHitAllocator.FreeSingle((ExN04MuonHit*) aHit);
105 }
106 
107 #endif
108 
109 
Type * MallocSingle()
Definition: G4Allocator.hh:191
void FreeSingle(Type *anElement)
Definition: G4Allocator.hh:201
const ExN04MuonHit & operator=(const ExN04MuonHit &right)
Definition: G4VHit.hh:48
G4Allocator< ExN04MuonHit > ExN04MuonHitAllocator
int G4int
Definition: G4Types.hh:78
G4int operator==(const ExN04MuonHit &right) const
G4THitsCollection< ExN04MuonHit > ExN04MuonHitsCollection
double G4double
Definition: G4Types.hh:76