source: trunk/source/error_propagation/src/G4ErrorTrajState.cc @ 1244

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

update geant4.9.3 tag

File size: 4.7 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// $Id: G4ErrorTrajState.cc,v 1.2 2007/05/29 14:41:35 gcosmo Exp $
27// GEANT4 tag $Name: geant4-09-03 $
28//
29// ------------------------------------------------------------
30//      GEANT 4 class implementation file
31// ------------------------------------------------------------
32//
33
34#include "G4ErrorTrajState.hh"
35#include "G4ParticleTable.hh"
36#include "G4ParticleDefinition.hh"
37#include "G4ErrorPropagatorData.hh"
38
39#include <iomanip>
40
41//--------------------------------------------------------------------------
42G4ErrorTrajState::G4ErrorTrajState( const G4String& partType,
43                                    const G4Point3D& pos,
44                                    const G4Vector3D& mom,
45                                    const G4ErrorTrajErr& errmat)
46  : fParticleType(partType), fPosition(pos), fMomentum(mom), fError(errmat)
47{
48  iverbose = G4ErrorPropagatorData::verbose();
49}
50
51
52//--------------------------------------------------------------------------
53G4int G4ErrorTrajState::PropagateError( const G4Track* )
54{ 
55  G4cerr << "ERROR - G4ErrorTrajState::PropagateError()" << G4endl
56         << "        Called for trajectory state type "
57         << G4int(GetTSType()) << G4endl;
58  G4Exception("G4ErrorTrajState::PropagateError", "GEANT4e-Error",
59              FatalException, "Wrong trajectory state type");
60   return -1; 
61}
62
63
64//--------------------------------------------------------------------------
65void G4ErrorTrajState::UpdatePosMom( const G4Point3D& pos,
66                                     const G4Vector3D& mom )
67{
68  fPosition = pos;
69  fMomentum = mom;
70}
71
72
73//--------------------------------------------------------------------------
74void G4ErrorTrajState::SetData( const G4String& partType,
75                                const G4Point3D& pos, const G4Vector3D& mom )
76{
77  fParticleType = partType;
78  BuildCharge();
79  fPosition = pos;
80  fMomentum = mom;
81}
82
83
84//--------------------------------------------------------------------------
85void G4ErrorTrajState::BuildCharge()
86{
87  G4ParticleTable* particleTable = G4ParticleTable::GetParticleTable();
88  G4ParticleDefinition* particle = particleTable->FindParticle(fParticleType); 
89  if( particle == 0)
90  {
91    G4cerr << "ERROR - G4ErrorTrajState::BuildCharge()" << G4endl
92           << "        Particle type not defined: " << fParticleType << G4endl;
93    G4Exception( "G4ErrorTrajState::BuildCharge()", "GEANT4e-error",
94                  FatalException, "Particle type not defined!");
95  }
96  else
97  {
98    fCharge = particle->GetPDGCharge();
99  }
100}
101
102
103//------------------------------------------------------------------------
104void G4ErrorTrajState::DumpPosMomError( std::ostream& out ) const
105{
106  out << *this;
107}
108
109
110//--------------------------------------------------------------------------
111std::ostream& operator<<(std::ostream& out, const G4ErrorTrajState& ts)
112{
113  //  long mode = out.setf(std::ios::fixed,std::ios::floatfield);
114  out 
115    << " G4ErrorTrajState of type " << ts.theTSType << " : partycle: "
116    << ts.fParticleType << "  position: " << std::setw(6) << ts.fPosition
117    << "              momentum: " << ts.fMomentum
118    << "   error matrix ";
119  G4cout << ts.fError << G4endl;
120
121  return out;
122}
123
Note: See TracBrowser for help on using the repository browser.