97 lines
3.7 KiB
C++
97 lines
3.7 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// ------------------------------------------------------------
|
|
// GEANT 4 class implementation file
|
|
// ------------------------------------------------------------
|
|
//
|
|
|
|
#include "G4ErrorFreeTrajParam.hh"
|
|
#include "G4ThreeVector.hh"
|
|
#include "G4SystemOfUnits.hh"
|
|
|
|
#include <iomanip>
|
|
|
|
//------------------------------------------------------------------------
|
|
G4ErrorFreeTrajParam::G4ErrorFreeTrajParam( const G4Point3D& pos,
|
|
const G4Vector3D& mom )
|
|
{
|
|
SetParameters( pos, mom );
|
|
}
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
void G4ErrorFreeTrajParam::SetParameters( const G4Point3D& pos,
|
|
const G4Vector3D& mom )
|
|
{
|
|
fInvP = 1./mom.mag();
|
|
fDir = mom*fInvP;
|
|
fLambda = 90.*deg - mom.theta();
|
|
fPhi = mom.phi();
|
|
G4Vector3D vxPerp(0.,0.,0.);
|
|
if( mom.mag() > 0.) {
|
|
vxPerp = mom/mom.mag();
|
|
}
|
|
G4Vector3D vyPerp = G4Vector3D( -vxPerp.y(), vxPerp.x(), 0.);
|
|
vyPerp /= vyPerp.mag();
|
|
G4Vector3D vzPerp = vxPerp.cross( vyPerp );
|
|
vzPerp /= vzPerp.mag();
|
|
// check if right handed
|
|
// fXPerp = pos.proj( mom );
|
|
G4ThreeVector posv(pos);
|
|
if( vyPerp.mag() != 0. ) {
|
|
// now all 2 scalar memeber variables retain the signs
|
|
// fYPerp = posv.project( vyPerp ).mag();
|
|
// fZPerp = posv.project( vzPerp ).mag();
|
|
fYPerp = posv.dot( vyPerp );
|
|
fZPerp = posv.dot( vzPerp );
|
|
} else {
|
|
fYPerp = 0.;
|
|
fZPerp = 0.;
|
|
}
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
void G4ErrorFreeTrajParam::Update( const G4Track* aTrack )
|
|
{
|
|
SetParameters( aTrack->GetPosition(), aTrack->GetMomentum() );
|
|
|
|
}
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
std::ostream& operator<<(std::ostream& out, const G4ErrorFreeTrajParam& tp)
|
|
{
|
|
G4int oldprc = out.precision(8);
|
|
out << " InvP= " << tp.fInvP << " Theta= "
|
|
<< tp.fLambda << " Phi= " << tp.fPhi << " YPerp= " << tp.fYPerp
|
|
<< " ZPerp= " << tp.fZPerp << G4endl;
|
|
out << " momentum direction= " << tp.fDir << G4endl;
|
|
out.precision(oldprc);
|
|
|
|
return out;
|
|
}
|