source: trunk/source/tracking/include/G4TrajectoryPoint.hh @ 1340

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

update ti head

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: G4TrajectoryPoint.hh,v 1.19 2010/10/27 07:57:21 gcosmo Exp $
28// GEANT4 tag $Name: tracking-V09-03-08 $
29//
30//---------------------------------------------------------------
31//
32// G4TrajectoryPoint.hh
33//
34// class description:
35//   This class represents the trajectory of a particle tracked.
36//   It includes information of
37//     1) List of trajectory points which compose the trajectory,
38//     2) static information of particle which generated the
39//        trajectory,
40//     3) trackID and parent particle ID of the trajectory,
41//     4) termination condition of the trajectory.
42//
43// Contact:
44//   Questions and comments to this code should be sent to
45//     Katsuya Amako  (e-mail: Katsuya.Amako@kek.jp)
46//     Takashi Sasaki (e-mail: Takashi.Sasaki@kek.jp)
47//
48// ---------------------------------------------------------------
49
50#ifndef G4TrajectoryPoint_h
51#define G4TrajectoryPoint_h 1
52
53#include "G4VTrajectoryPoint.hh"
54#include "globals.hh"                // Include from 'global'
55#include "G4ThreeVector.hh"          // Include from 'geometry'
56#include "G4Allocator.hh"            // Include from 'particle+matter'
57
58
59////////////////////////
60class G4TrajectoryPoint : public G4VTrajectoryPoint
61////////////////////////
62{
63
64//--------
65public: // without description
66//--------
67
68// Constructor/Destructor
69   G4TrajectoryPoint();
70   G4TrajectoryPoint(G4ThreeVector pos);
71   G4TrajectoryPoint(const G4TrajectoryPoint &right);
72   virtual ~G4TrajectoryPoint();
73
74// Operators
75   inline void *operator new(size_t);
76   inline void operator delete(void *aTrajectoryPoint);
77   inline int operator==(const G4TrajectoryPoint& right) const
78   { return (this==&right); };
79
80// Get/Set functions
81   inline const G4ThreeVector GetPosition() const
82   { return fPosition; };
83
84// Get method for HEPRep style attributes
85   virtual const std::map<G4String,G4AttDef>* GetAttDefs() const;
86   virtual std::vector<G4AttValue>* CreateAttValues() const;
87
88//---------
89   private:
90//---------
91
92// Member data
93   G4ThreeVector fPosition;
94
95};
96
97#if defined G4TRACKING_ALLOC_EXPORT
98  extern G4DLLEXPORT G4Allocator<G4TrajectoryPoint> aTrajectoryPointAllocator;
99#else
100  extern G4DLLIMPORT G4Allocator<G4TrajectoryPoint> aTrajectoryPointAllocator;
101#endif
102
103inline void* G4TrajectoryPoint::operator new(size_t)
104{
105   void *aTrajectoryPoint;
106   aTrajectoryPoint = (void *) aTrajectoryPointAllocator.MallocSingle();
107   return aTrajectoryPoint;
108}
109
110inline void G4TrajectoryPoint::operator delete(void *aTrajectoryPoint)
111{
112   aTrajectoryPointAllocator.FreeSingle((G4TrajectoryPoint *) aTrajectoryPoint);
113}
114
115#endif
116
Note: See TracBrowser for help on using the repository browser.