CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions
TrackInformationExtractor Class Reference

#include <TrackInformationExtractor.h>

Public Member Functions

const TrackInformationoperator() (const G4Track &gtk) const
 
const TrackInformationoperator() (const G4Track *gtk) const
 
TrackInformationoperator() (G4Track &gtk) const
 
TrackInformationoperator() (G4Track *gtk) const
 

Private Member Functions

void missing (const G4Track &gtk) const
 
void wrongType () const
 

Detailed Description

Provides safe access to the TrackInformation part of a G4Track. If the G4Track pointer/reference is const, a const reference to the TrackInformation is returned, else a non-const reference is returned. The TrackInformationExtractor checks for the existance of TrackInformation and for the validity of the dynamic_cast; It will throw an excepton if it is not possible to return TrackInformation, but it will do it's best to satisfy the request (in some cases it may even create the TrackInformation on-the-fly).

Definition at line 20 of file TrackInformationExtractor.h.

Member Function Documentation

void TrackInformationExtractor::missing ( const G4Track &  gtk) const
inlineprivate

Definition at line 34 of file TrackInformationExtractor.h.

Referenced by operator()().

35  { throw SimG4Exception("TrackInformationExtractor: G4Track has no TrackInformation"); }
const TrackInformation & TrackInformationExtractor::operator() ( const G4Track &  gtk) const

for a const G4Track pointer/reference a const TrackInformation& is returned.

Definition at line 6 of file TrackInformationExtractor.cc.

References missing(), and wrongType().

7 {
8  G4VUserTrackInformation * gui = gtk.GetUserInformation();
9  if (gui == 0) missing(gtk);
10  const TrackInformation * tkInfo = dynamic_cast<const TrackInformation *>(gui);
11  if (tkInfo == 0) wrongType();
12  return * tkInfo;
13 }
void missing(const G4Track &gtk) const
const TrackInformation& TrackInformationExtractor::operator() ( const G4Track *  gtk) const
inline

Definition at line 27 of file TrackInformationExtractor.h.

References operator()().

Referenced by operator()().

27 { return operator()(*gtk); }
const TrackInformation & operator()(const G4Track &gtk) const
TrackInformation & TrackInformationExtractor::operator() ( G4Track &  gtk) const

for a non-const G4Track pointer/reference the TrackInformation& is also non-const.

Definition at line 16 of file TrackInformationExtractor.cc.

References missing(), and wrongType().

17 {
18  G4VUserTrackInformation * gui = gtk.GetUserInformation();
19  if (gui == 0) missing(gtk);
20  TrackInformation * tkInfo = dynamic_cast<TrackInformation *>(gui);
21  if (tkInfo == 0) wrongType();
22  return * tkInfo;
23 }
void missing(const G4Track &gtk) const
TrackInformation& TrackInformationExtractor::operator() ( G4Track *  gtk) const
inline

Definition at line 32 of file TrackInformationExtractor.h.

References operator()().

Referenced by operator()().

32 { return operator()(*gtk); }
const TrackInformation & operator()(const G4Track &gtk) const
void TrackInformationExtractor::wrongType ( ) const
inlineprivate

Definition at line 36 of file TrackInformationExtractor.h.

Referenced by operator()().

37  { throw SimG4Exception("User information in G4Track is not of TrackInformation type"); }