ATLAS Offline Software
Loading...
Searching...
No Matches
StringVector.h File Reference
#include "G4ThreeVector.hh"
#include "G4LorentzVector.hh"
Include dependency graph for StringVector.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  StringVector

Functions

StringVector operator* (G4double a, const StringVector &s)
StringVector operator* (const StringVector &s, G4double a)

Function Documentation

◆ operator*() [1/2]

StringVector operator* ( const StringVector & s,
G4double a )
inline

Definition at line 38 of file StringVector.h.

38 {
39 return StringVector(a * s.vect(), a * s.mag());
40}
static Double_t a

◆ operator*() [2/2]

StringVector operator* ( G4double a,
const StringVector & s )
inline

Definition at line 34 of file StringVector.h.

34 {
35 return StringVector(a * s.vect(), a * s.mag());
36}