-
Notifications
You must be signed in to change notification settings - Fork 0
/
jlGeant4-report.txt
3777 lines (3765 loc) · 195 KB
/
jlGeant4-report.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Dependency cycles: ok. No dependency cycle.
Undefined types
---------------
The definition of the following types where not found. Use the extra_headers configuration parameters to specify the header files that defines.
The auto_veto parameter is set to true, generation of the wrappers that would have needed theses types were skipped.
G4Allocator<G4Event>
G4Allocator<G4HCofThisEvent>
G4Allocator<G4PrimaryParticle>
G4Allocator<G4PrimaryVertex>
G4Allocator<G4TrajectoryContainer>
G4ChordFinder
G4DCtable
G4DecayTable
G4GeomSplitter<G4LVData>
G4GeomSplitter<G4PVData>
G4GeomSplitter<G4ReplicaData>
G4MTcoutDestination
G4Polyline
G4PropagatorInField
G4UIbridge
G4UIcommandTree
G4UIsession
G4UserPhysicsListMessenger
G4UserWorkerThreadInitialization
G4VAuxiliaryTrackInformation
G4VGraphicsScene
G4VScoreColorMap
G4VTrackingManager
G4VUPLSplitter<G4VMPLData>
G4VUPLSplitter<G4VUPLData>
G4VUserParallelWorld
G4VUserPrimaryParticleInformation
G4VUserPrimaryVertexInformation
G4VisExtent
G4VoxelLimits
G4WorkerThread
__void__
_opaque_pthread_t
std::__thread_id
std::__wrap_iter<G4Navigator **>
std::__wrap_iter<G4VPhysicalVolume **>
std::basic_istream
std::basic_istringstream
std::basic_ostream
std::map<G4LogicalVolume *,std::vector<G4GDMLAuxStructType,std::allocator<G4GDMLAuxStructType>>,std::less<G4LogicalVolume *>,std::allocator<std::pair<G4LogicalVolume *const,std::vector<G4GDMLAuxStructType,std::allocator<G4GDMLAuxStructType>>>>>
std::map<G4Material *,double,std::less<G4Material *>,std::allocator<std::pair<G4Material *const,double>>>
std::map<G4String,G4AttDef,std::less<G4String>,std::allocator<std::pair<const G4String,G4AttDef>>>
std::map<G4String,G4Colour,std::less<G4String>,std::allocator<std::pair<const G4String,G4Colour>>>
std::map<G4String,std::vector<G4LogicalVolume *,std::allocator<G4LogicalVolume *>>,std::less<G4String>,std::allocator<std::pair<const G4String,std::vector<G4LogicalVolume *,std::allocator<G4LogicalVolume *>>>>>
std::map<int,G4VAuxiliaryTrackInformation *,std::less<int>,std::allocator<std::pair<const int,G4VAuxiliaryTrackInformation *>>>
std::map<int,G4VPhysicalVolume *,std::less<int>,std::allocator<std::pair<const int,G4VPhysicalVolume *>>>
std::map<std::pair<const G4VPhysicalVolume *,const G4VPhysicalVolume *>,G4LogicalBorderSurface *,std::less<std::pair<const G4VPhysicalVolume *,const G4VPhysicalVolume *>>,std::allocator<std::pair<const std::pair<const G4VPhysicalVolume *,const G4VPhysicalVolume *>,G4LogicalBorderSurface *>>>
std::queue<long,std::deque<long,std::allocator<long>>>
Class(es) from vetoed_finalizer_classes configuration parameter that were not found:
-------------------------------------------------------------------------------------
None
List of wrapped classed:
G4ParticleDefinition
G4String
G4ProcessManager
G4ParticleTable
G4PDefManager
G4FieldManager
G4Field
G4MagneticField
G4Track
G4HCofThisEvent
G4VHitsCollection
CLHEP::Hep3Vector
CLHEP::HepRotation
CLHEP::HepAxisAngle
CLHEP::HepEulerAngles
CLHEP::HepRotationX
CLHEP::HepRotationY
CLHEP::HepRotationZ
CLHEP::HepRep3x3
CLHEP::HepRotation::HepRotation_row
CLHEP::HepLorentzVector
CLHEP::HepRep4x4
CLHEP::HepBoost
CLHEP::HepLorentzRotation
G4PVData
G4VPhysicalVolume
G4LogicalVolume
G4VPVParameterisation
HepGeom::Point3D
HepGeom::Vector3D
HepGeom::Normal3D
HepGeom::Transform3D
HepGeom::Transform3D::Transform3D_row
HepGeom::Point3D
HepGeom::Scale3D
HepGeom::Rotate3D
HepGeom::Translate3D
HepGeom::Vector3D
HepGeom::RotateX3D
HepGeom::RotateY3D
HepGeom::RotateZ3D
HepGeom::TranslateX3D
HepGeom::TranslateY3D
HepGeom::TranslateZ3D
HepGeom::Reflect3D
HepGeom::Normal3D
HepGeom::ReflectX3D
HepGeom::ReflectY3D
HepGeom::ReflectZ3D
HepGeom::ScaleX3D
HepGeom::ScaleY3D
HepGeom::ScaleZ3D
G4AffineTransform
G4NavigationHistory
G4LVData
G4VSolid
G4VSensitiveDetector
G4Material
G4MaterialCutsCouple
G4UserLimits
G4SmartVoxelHeader
G4Region
G4VisAttributes
G4FastSimulationManager
G4TouchableHistory
G4Isotope
G4Element
G4IonisParamElm
G4MaterialPropertiesTable
G4PhysicsFreeVector
G4IonisParamMat
G4SandiaTable
G4StepPoint
G4ReferenceCountedHandle
G4VProcess
G4Step
G4DynamicParticle
G4VUserTrackInformation
G4VReadOutGeometry
G4VSDFilter
G4VUserDetectorConstruction
G4VUserActionInitialization
G4VSteppingVerbose
G4VUserPrimaryGeneratorAction
G4Event
G4UserSteppingAction
G4SteppingManager
G4VPrimaryGenerator
G4PrimaryParticle
G4PrimaryVertex
G4ParticleGun
G4UserWorkerInitialization
G4LogicalVolumeStore
G4VNotifier
G4VStateDependent
CLHEP::Hep2Vector
G4JLExceptionHandler
G4JLSensDet
G4JLDetectorConstruction
G4JLActionInitialization
G4UserRunAction
G4UserEventAction
G4UserStackingAction
G4UserTrackingAction
G4JLParticleGun
G4JLWorkerInitialization
G4JLGeneratorAction
G4JLMagField
G4JLSteppingAction
G4JLTrackingAction
G4JLRunAction
G4Run
G4JLEventAction
G4JLStackingAction
G4JLStateDependent
G4PolyconeSideRZ
G4Polycone
G4PolyhedraSideRZ
G4Polyhedra
std::pair
std::vector
G4VTrajectory
G4VTrajectoryPoint
G4AttValue
G4TrajectoryContainer
G4DCofThisEvent
G4VUserEventInformation
G4SubEvent
G4Polyhedron
G4DisplacedSolid
G4Navigator
G4VExternalNavigation
G4VoxelNavigation
CLHEP::HepRandomEngine
std::basic_string
CLHEP::HepRandom
CLHEP::RandFlat
CLHEP::RandExponential
CLHEP::RandBit
CLHEP::RandGamma
CLHEP::RandGaussQ
CLHEP::RandGeneral
CLHEP::RandPoissonQ
G4VParticleChange
G4ProcessVector
G4EventManager
G4StackManager
G4TrackingManager
G4PrimaryTransformer
G4RunManager
G4VUserPhysicsList
G4MTRunManager
G4ScoringManager
G4RunManagerKernel
G4MTRunManagerKernel
G4UImanager
G4UIcommand
G4SPSPosDistribution
G4SPSRandomGenerator
G4SPSAngDistribution
G4SPSEneDistribution
G4SingleParticleSource
G4GeneralParticleSource
G4VFastSimulationModel
G4NistManager
G4ICRU90StoppingData
G4CSGSolid
G4SteppingVerbose
G4PVPlacement
G4ReplicaData
G4PVReplica
G4TransportationManager
G4SafetyHelper
G4GDMLAuxStructType
G4Box
G4ExtrudedSolid
G4ExtrudedSolid::ZSection
G4MultiUnion
G4Voxelizer
G4Trd
TrapSidePlane
G4Trap
G4Cons
G4Sphere
G4Orb
G4Ellipsoid
G4VCSGfaceted
G4PolyconeHistorical
G4PolyhedraHistorical
G4Torus
G4Para
G4Hype
G4Tubs
G4GDMLParser
G4GDMLReadStructure
G4GDMLWriteStructure
G4GDMLMatrix
G4OpticalParameters
G4OpticalSurface
G4Physics2DVector
G4LogicalBorderSurface
G4SurfaceProperty
G4LogicalSkinSurface
G4ParticleTableIterator
G4PhysicsListHelper
G4VMPLData
G4VPhysicsConstructor
G4VModularPhysicsList
QGS_BIC
QBBC
FTFP_BERT
G4EmStandardPhysics_option4
G4OpticalPhysics
G4DecayPhysics
G4EmStandardPhysics
G4RadioactiveDecayPhysics
G4OpBoundaryProcess
G4StepLimiterPhysics
G4HCtable
G4CutTubs
G4EllipticalTube
G4EllipticalCone
G4Paraboloid
G4Tet
G4TwistedBox
G4TwistedTrap
G4TwistedTrd
G4GenericTrap
G4TwistedTubs
CLHEP::HepRep4x4Symmetric
CLHEP::HepBoostX
CLHEP::HepBoostY
CLHEP::HepBoostZ
CLHEP::HepLorentzRotation::HepLorentzRotation_row
G4BooleanSolid
G4VBooleanProcessor
G4UnionSolid
G4SubtractionSolid
G4IntersectionSolid
G4UniformMagField
G4Colour
G4VScoringMesh
G4VScoreWriter
G4StateManager
G4VExceptionHandler
List of wrapped methods:
:G4bool G4ParticleDefinition::operator==(const G4ParticleDefinition &)
G4bool G4ParticleDefinition::operator!=(const G4ParticleDefinition &)
const G4String & G4ParticleDefinition::GetParticleName()
G4double G4ParticleDefinition::GetPDGMass()
G4double G4ParticleDefinition::GetPDGWidth()
G4double G4ParticleDefinition::GetPDGCharge()
G4double G4ParticleDefinition::GetPDGSpin()
G4int G4ParticleDefinition::GetPDGiSpin()
G4int G4ParticleDefinition::GetPDGiParity()
G4int G4ParticleDefinition::GetPDGiConjugation()
G4double G4ParticleDefinition::GetPDGIsospin()
G4double G4ParticleDefinition::GetPDGIsospin3()
G4int G4ParticleDefinition::GetPDGiIsospin()
G4int G4ParticleDefinition::GetPDGiIsospin3()
G4int G4ParticleDefinition::GetPDGiGParity()
G4double G4ParticleDefinition::GetPDGMagneticMoment()
void G4ParticleDefinition::SetPDGMagneticMoment(G4double)
G4double G4ParticleDefinition::CalculateAnomaly()
const G4String & G4ParticleDefinition::GetParticleType()
const G4String & G4ParticleDefinition::GetParticleSubType()
G4int G4ParticleDefinition::GetLeptonNumber()
G4int G4ParticleDefinition::GetBaryonNumber()
G4int G4ParticleDefinition::GetPDGEncoding()
G4int G4ParticleDefinition::GetAntiPDGEncoding()
void G4ParticleDefinition::SetAntiPDGEncoding(G4int)
G4int G4ParticleDefinition::GetQuarkContent(G4int)
G4int G4ParticleDefinition::GetAntiQuarkContent(G4int)
G4bool G4ParticleDefinition::IsShortLived()
G4bool G4ParticleDefinition::GetPDGStable()
void G4ParticleDefinition::SetPDGStable(const G4bool)
G4double G4ParticleDefinition::GetPDGLifeTime()
void G4ParticleDefinition::SetPDGLifeTime(G4double)
G4double G4ParticleDefinition::GetIonLifeTime()
G4ProcessManager * G4ParticleDefinition::GetProcessManager()
void G4ParticleDefinition::SetProcessManager(G4ProcessManager *)
G4ParticleTable * G4ParticleDefinition::GetParticleTable()
G4int G4ParticleDefinition::GetAtomicNumber()
G4int G4ParticleDefinition::GetAtomicMass()
void G4ParticleDefinition::DumpTable()
void G4ParticleDefinition::SetVerboseLevel(G4int)
G4int G4ParticleDefinition::GetVerboseLevel()
void G4ParticleDefinition::SetApplyCutsFlag(G4bool)
G4bool G4ParticleDefinition::GetApplyCutsFlag()
G4bool G4ParticleDefinition::IsGeneralIon()
G4bool G4ParticleDefinition::IsMuonicAtom()
G4ProcessManager * G4ParticleDefinition::GetMasterProcessManager()
void G4ParticleDefinition::SetMasterProcessManager(G4ProcessManager *)
G4int G4ParticleDefinition::GetInstanceID()
const G4PDefManager & G4ParticleDefinition::GetSubInstanceManager()
void G4ParticleDefinition::Clean()
void G4ParticleDefinition::SetParticleDefinitionID(G4int)
G4int G4ParticleDefinition::GetParticleDefinitionID()
G4bool G4ParticleDefinition::IsHypernucleus()
G4int G4ParticleDefinition::GetNumberOfLambdasInHypernucleus()
G4bool G4ParticleDefinition::IsAntiHypernucleus()
G4int G4ParticleDefinition::GetNumberOfAntiLambdasInAntiHypernucleus()
void G4ProcessManager::G4ProcessManager(const G4ParticleDefinition *)
void G4ProcessManager::G4ProcessManager(G4ProcessManager &)
G4bool G4ProcessManager::operator==(const G4ProcessManager &)
G4bool G4ProcessManager::operator!=(const G4ProcessManager &)
G4ProcessVector * G4ProcessManager::GetProcessList()
G4int G4ProcessManager::GetProcessListLength()
G4int G4ProcessManager::GetProcessIndex(G4VProcess *)
G4ProcessVector * G4ProcessManager::GetProcessVector(G4ProcessVectorDoItIndex, G4ProcessVectorTypeIndex)
G4ProcessVector * G4ProcessManager::GetAtRestProcessVector(G4ProcessVectorTypeIndex)
G4ProcessVector * G4ProcessManager::GetAlongStepProcessVector(G4ProcessVectorTypeIndex)
G4ProcessVector * G4ProcessManager::GetPostStepProcessVector(G4ProcessVectorTypeIndex)
G4int G4ProcessManager::GetProcessVectorIndex(G4VProcess *, G4ProcessVectorDoItIndex, G4ProcessVectorTypeIndex)
G4int G4ProcessManager::GetAtRestIndex(G4VProcess *, G4ProcessVectorTypeIndex)
G4int G4ProcessManager::GetAlongStepIndex(G4VProcess *, G4ProcessVectorTypeIndex)
G4int G4ProcessManager::GetPostStepIndex(G4VProcess *, G4ProcessVectorTypeIndex)
G4int G4ProcessManager::AddProcess(G4VProcess *, G4int, G4int, G4int)
G4int G4ProcessManager::AddRestProcess(G4VProcess *, G4int)
G4int G4ProcessManager::AddDiscreteProcess(G4VProcess *, G4int)
G4int G4ProcessManager::AddContinuousProcess(G4VProcess *, G4int)
G4int G4ProcessManager::GetProcessOrdering(G4VProcess *, G4ProcessVectorDoItIndex)
void G4ProcessManager::SetProcessOrdering(G4VProcess *, G4ProcessVectorDoItIndex, G4int)
void G4ProcessManager::SetProcessOrderingToFirst(G4VProcess *, G4ProcessVectorDoItIndex)
void G4ProcessManager::SetProcessOrderingToSecond(G4VProcess *, G4ProcessVectorDoItIndex)
void G4ProcessManager::SetProcessOrderingToLast(G4VProcess *, G4ProcessVectorDoItIndex)
G4VProcess * G4ProcessManager::RemoveProcess(G4VProcess *)
G4VProcess * G4ProcessManager::RemoveProcess(G4int)
G4VProcess * G4ProcessManager::SetProcessActivation(G4VProcess *, G4bool)
G4VProcess * G4ProcessManager::SetProcessActivation(G4int, G4bool)
G4bool G4ProcessManager::GetProcessActivation(G4VProcess *)
G4bool G4ProcessManager::GetProcessActivation(G4int)
G4ParticleDefinition * G4ProcessManager::GetParticleType()
void G4ProcessManager::SetParticleType(const G4ParticleDefinition *)
G4VProcess * G4ProcessManager::GetProcess(const G4String &)
void G4ProcessManager::StartTracking(G4Track *)
void G4ProcessManager::EndTracking()
void G4ProcessManager::DumpInfo()
void G4ProcessManager::SetVerboseLevel(G4int)
G4int G4ProcessManager::GetVerboseLevel()
void G4FieldManager::G4FieldManager(G4MagneticField *)
G4bool G4FieldManager::SetDetectorField(G4Field *, G4int)
void G4FieldManager::ProposeDetectorField(G4Field *)
void G4FieldManager::ChangeDetectorField(G4Field *)
const G4Field * G4FieldManager::GetDetectorField()
G4bool G4FieldManager::DoesFieldExist()
void G4FieldManager::CreateChordFinder(G4MagneticField *)
void G4FieldManager::ConfigureForTrack(const G4Track *)
G4double G4FieldManager::GetDeltaIntersection()
G4double G4FieldManager::GetDeltaOneStep()
void G4FieldManager::SetAccuraciesWithDeltaOneStep(G4double)
void G4FieldManager::SetDeltaOneStep(G4double)
void G4FieldManager::SetDeltaIntersection(G4double)
G4double G4FieldManager::GetMinimumEpsilonStep()
G4bool G4FieldManager::SetMinimumEpsilonStep(G4double)
G4double G4FieldManager::GetMaximumEpsilonStep()
G4bool G4FieldManager::SetMaximumEpsilonStep(G4double)
G4bool G4FieldManager::DoesFieldChangeEnergy()
void G4FieldManager::SetFieldChangesEnergy(G4bool)
G4FieldManager * G4FieldManager::Clone()
G4double G4FieldManager::GetMaxAcceptedEpsilon()
G4bool G4FieldManager::SetMaxAcceptedEpsilon(G4double, G4bool)
void G4MagneticField::G4MagneticField(const G4MagneticField &)
G4MagneticField & G4MagneticField::operator=(const G4MagneticField &)
G4bool G4MagneticField::DoesFieldChangeEnergy()
void G4Track::G4Track(G4DynamicParticle *, G4double, const G4ThreeVector &)
void G4Track::G4Track(const G4Track &)
G4Track & G4Track::operator=(const G4Track &)
G4bool G4Track::operator==(const G4Track &)
G4bool G4Track::operator!=(const G4Track &)
void G4Track::CopyTrackInfo(const G4Track &)
G4int G4Track::GetTrackID()
void G4Track::SetTrackID(const G4int)
G4int G4Track::GetParentID()
void G4Track::SetParentID(const G4int)
const G4DynamicParticle * G4Track::GetDynamicParticle()
const G4ParticleDefinition * G4Track::GetParticleDefinition()
G4ParticleDefinition * G4Track::GetDefinition()
const G4ThreeVector & G4Track::GetPosition()
void G4Track::SetPosition(const G4ThreeVector &)
G4double G4Track::GetGlobalTime()
void G4Track::SetGlobalTime(const G4double)
G4double G4Track::GetLocalTime()
void G4Track::SetLocalTime(const G4double)
G4double G4Track::GetProperTime()
void G4Track::SetProperTime(const G4double)
G4VPhysicalVolume * G4Track::GetVolume()
G4VPhysicalVolume * G4Track::GetNextVolume()
G4Material * G4Track::GetMaterial()
G4Material * G4Track::GetNextMaterial()
const G4MaterialCutsCouple * G4Track::GetMaterialCutsCouple()
const G4MaterialCutsCouple * G4Track::GetNextMaterialCutsCouple()
const G4VTouchable * G4Track::GetTouchable()
const G4TouchableHandle & G4Track::GetTouchableHandle()
void G4Track::SetTouchableHandle(const G4TouchableHandle &)
const G4VTouchable * G4Track::GetNextTouchable()
const G4TouchableHandle & G4Track::GetNextTouchableHandle()
void G4Track::SetNextTouchableHandle(const G4TouchableHandle &)
const G4VTouchable * G4Track::GetOriginTouchable()
const G4TouchableHandle & G4Track::GetOriginTouchableHandle()
void G4Track::SetOriginTouchableHandle(const G4TouchableHandle &)
G4double G4Track::GetKineticEnergy()
void G4Track::SetKineticEnergy(const G4double)
G4double G4Track::GetTotalEnergy()
const G4ThreeVector & G4Track::GetMomentumDirection()
void G4Track::SetMomentumDirection(const G4ThreeVector &)
G4ThreeVector G4Track::GetMomentum()
G4double G4Track::GetVelocity()
void G4Track::SetVelocity(G4double)
G4double G4Track::CalculateVelocity()
G4double G4Track::CalculateVelocityForOpticalPhoton()
G4bool G4Track::UseGivenVelocity()
void G4Track::UseGivenVelocity(G4bool)
const G4ThreeVector & G4Track::GetPolarization()
void G4Track::SetPolarization(const G4ThreeVector &)
G4TrackStatus G4Track::GetTrackStatus()
void G4Track::SetTrackStatus(const G4TrackStatus)
G4bool G4Track::IsBelowThreshold()
void G4Track::SetBelowThresholdFlag(G4bool)
G4bool G4Track::IsGoodForTracking()
void G4Track::SetGoodForTrackingFlag(G4bool)
G4double G4Track::GetTrackLength()
void G4Track::AddTrackLength(const G4double)
const G4Step * G4Track::GetStep()
void G4Track::SetStep(const G4Step *)
G4int G4Track::GetCurrentStepNumber()
void G4Track::IncrementCurrentStepNumber()
G4double G4Track::GetStepLength()
void G4Track::SetStepLength(G4double)
const G4ThreeVector & G4Track::GetVertexPosition()
void G4Track::SetVertexPosition(const G4ThreeVector &)
const G4ThreeVector & G4Track::GetVertexMomentumDirection()
void G4Track::SetVertexMomentumDirection(const G4ThreeVector &)
G4double G4Track::GetVertexKineticEnergy()
void G4Track::SetVertexKineticEnergy(const G4double)
const G4LogicalVolume * G4Track::GetLogicalVolumeAtVertex()
void G4Track::SetLogicalVolumeAtVertex(const G4LogicalVolume *)
const G4VProcess * G4Track::GetCreatorProcess()
void G4Track::SetCreatorProcess(const G4VProcess *)
void G4Track::SetCreatorModelID(const G4int)
G4int G4Track::GetCreatorModelID()
G4int G4Track::GetCreatorModelIndex()
const G4String G4Track::GetCreatorModelName()
const G4ParticleDefinition * G4Track::GetParentResonanceDef()
void G4Track::SetParentResonanceDef(const G4ParticleDefinition *)
G4int G4Track::GetParentResonanceID()
void G4Track::SetParentResonanceID(const G4int)
G4bool G4Track::HasParentResonance()
G4int G4Track::GetParentResonancePDGEncoding()
G4String G4Track::GetParentResonanceName()
G4double G4Track::GetParentResonanceMass()
G4double G4Track::GetWeight()
void G4Track::SetWeight(G4double)
G4VUserTrackInformation * G4Track::GetUserInformation()
void G4Track::SetUserInformation(G4VUserTrackInformation *)
void G4Track::RemoveAuxiliaryTrackInformation(G4int)
void G4Track::RemoveAuxiliaryTrackInformation(G4String &)
void G4HCofThisEvent::G4HCofThisEvent(G4int)
void G4HCofThisEvent::G4HCofThisEvent(const G4HCofThisEvent &)
G4HCofThisEvent & G4HCofThisEvent::operator=(const G4HCofThisEvent &)
void G4HCofThisEvent::AddHitsCollection(G4int, G4VHitsCollection *)
G4VHitsCollection * G4HCofThisEvent::GetHC(G4int)
G4int G4HCofThisEvent::GetNumberOfCollections()
size_t G4HCofThisEvent::GetCapacity()
void CLHEP::Hep3Vector::Hep3Vector(double)
void CLHEP::Hep3Vector::Hep3Vector(double, double)
void CLHEP::Hep3Vector::Hep3Vector(double, double, double)
void CLHEP::Hep3Vector::Hep3Vector(const CLHEP::Hep3Vector &)
void CLHEP::Hep3Vector::Hep3Vector(CLHEP::Hep3Vector &&)
double CLHEP::Hep3Vector::operator()(int)
double CLHEP::Hep3Vector::operator[](int)
double & CLHEP::Hep3Vector::operator()(int)
double & CLHEP::Hep3Vector::operator[](int)
double CLHEP::Hep3Vector::x()
double CLHEP::Hep3Vector::y()
double CLHEP::Hep3Vector::z()
void CLHEP::Hep3Vector::setX(double)
void CLHEP::Hep3Vector::setY(double)
void CLHEP::Hep3Vector::setZ(double)
void CLHEP::Hep3Vector::set(double, double, double)
double CLHEP::Hep3Vector::phi()
double CLHEP::Hep3Vector::theta()
double CLHEP::Hep3Vector::cosTheta()
double CLHEP::Hep3Vector::cos2Theta()
double CLHEP::Hep3Vector::mag2()
double CLHEP::Hep3Vector::mag()
void CLHEP::Hep3Vector::setPhi(double)
void CLHEP::Hep3Vector::setTheta(double)
void CLHEP::Hep3Vector::setMag(double)
double CLHEP::Hep3Vector::perp2()
double CLHEP::Hep3Vector::perp()
void CLHEP::Hep3Vector::setPerp(double)
void CLHEP::Hep3Vector::setCylTheta(double)
double CLHEP::Hep3Vector::perp2(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::perp(const CLHEP::Hep3Vector &)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::operator=(const CLHEP::Hep3Vector &)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::operator=(CLHEP::Hep3Vector &&)
bool CLHEP::Hep3Vector::operator==(const CLHEP::Hep3Vector &)
bool CLHEP::Hep3Vector::operator!=(const CLHEP::Hep3Vector &)
bool CLHEP::Hep3Vector::isNear(const CLHEP::Hep3Vector &, double)
double CLHEP::Hep3Vector::howNear(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::deltaR(const CLHEP::Hep3Vector &)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::operator+=(const CLHEP::Hep3Vector &)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::operator-=(const CLHEP::Hep3Vector &)
CLHEP::Hep3Vector CLHEP::Hep3Vector::operator-()
CLHEP::Hep3Vector & CLHEP::Hep3Vector::operator*=(double)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::operator/=(double)
CLHEP::Hep3Vector CLHEP::Hep3Vector::unit()
CLHEP::Hep3Vector CLHEP::Hep3Vector::orthogonal()
double CLHEP::Hep3Vector::dot(const CLHEP::Hep3Vector &)
CLHEP::Hep3Vector CLHEP::Hep3Vector::cross(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::angle(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::pseudoRapidity()
void CLHEP::Hep3Vector::setEta(double)
void CLHEP::Hep3Vector::setCylEta(double)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::rotateX(double)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::rotateY(double)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::rotateZ(double)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::rotateUz(const CLHEP::Hep3Vector &)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::rotate(double, const CLHEP::Hep3Vector &)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::operator*=(const CLHEP::HepRotation &)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::transform(const CLHEP::HepRotation &)
void CLHEP::Hep3Vector::setRThetaPhi(double, double, double)
void CLHEP::Hep3Vector::setREtaPhi(double, double, double)
void CLHEP::Hep3Vector::setRhoPhiZ(double, double, double)
void CLHEP::Hep3Vector::setRhoPhiTheta(double, double, double)
void CLHEP::Hep3Vector::setRhoPhiEta(double, double, double)
double CLHEP::Hep3Vector::getX()
double CLHEP::Hep3Vector::getY()
double CLHEP::Hep3Vector::getZ()
double CLHEP::Hep3Vector::getR()
double CLHEP::Hep3Vector::getTheta()
double CLHEP::Hep3Vector::getPhi()
double CLHEP::Hep3Vector::r()
double CLHEP::Hep3Vector::rho()
double CLHEP::Hep3Vector::getRho()
double CLHEP::Hep3Vector::eta()
double CLHEP::Hep3Vector::getEta()
void CLHEP::Hep3Vector::setR(double)
void CLHEP::Hep3Vector::setRho(double)
int CLHEP::Hep3Vector::compare(const CLHEP::Hep3Vector &)
bool CLHEP::Hep3Vector::operator>(const CLHEP::Hep3Vector &)
bool CLHEP::Hep3Vector::operator<(const CLHEP::Hep3Vector &)
bool CLHEP::Hep3Vector::operator>=(const CLHEP::Hep3Vector &)
bool CLHEP::Hep3Vector::operator<=(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::diff2(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::setTolerance(double)
double CLHEP::Hep3Vector::getTolerance()
bool CLHEP::Hep3Vector::isParallel(const CLHEP::Hep3Vector &, double)
bool CLHEP::Hep3Vector::isOrthogonal(const CLHEP::Hep3Vector &, double)
double CLHEP::Hep3Vector::howParallel(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::howOrthogonal(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::beta()
double CLHEP::Hep3Vector::gamma()
double CLHEP::Hep3Vector::coLinearRapidity()
double CLHEP::Hep3Vector::angle()
double CLHEP::Hep3Vector::theta(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::cosTheta(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::cos2Theta(const CLHEP::Hep3Vector &)
CLHEP::Hep3Vector CLHEP::Hep3Vector::project()
CLHEP::Hep3Vector CLHEP::Hep3Vector::project(const CLHEP::Hep3Vector &)
CLHEP::Hep3Vector CLHEP::Hep3Vector::perpPart()
CLHEP::Hep3Vector CLHEP::Hep3Vector::perpPart(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::rapidity()
double CLHEP::Hep3Vector::rapidity(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::eta(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::polarAngle(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::deltaPhi(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::azimAngle(const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::polarAngle(const CLHEP::Hep3Vector &, const CLHEP::Hep3Vector &)
double CLHEP::Hep3Vector::azimAngle(const CLHEP::Hep3Vector &, const CLHEP::Hep3Vector &)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::rotate(const CLHEP::Hep3Vector &, double)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::rotate(const CLHEP::HepAxisAngle &)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::rotate(const CLHEP::HepEulerAngles &)
CLHEP::Hep3Vector & CLHEP::Hep3Vector::rotate(double, double, double)
void CLHEP::HepRotation::HepRotation(const CLHEP::HepRotation &)
void CLHEP::HepRotation::HepRotation(CLHEP::HepRotation &&)
void CLHEP::HepRotation::HepRotation(const CLHEP::HepRotationX &)
void CLHEP::HepRotation::HepRotation(const CLHEP::HepRotationY &)
void CLHEP::HepRotation::HepRotation(const CLHEP::HepRotationZ &)
CLHEP::HepRotation & CLHEP::HepRotation::set(const CLHEP::Hep3Vector &, double)
void CLHEP::HepRotation::HepRotation(const CLHEP::Hep3Vector &, double)
CLHEP::HepRotation & CLHEP::HepRotation::set(const CLHEP::HepAxisAngle &)
void CLHEP::HepRotation::HepRotation(const CLHEP::HepAxisAngle &)
CLHEP::HepRotation & CLHEP::HepRotation::set(double, double, double)
void CLHEP::HepRotation::HepRotation(double, double, double)
CLHEP::HepRotation & CLHEP::HepRotation::set(const CLHEP::HepEulerAngles &)
void CLHEP::HepRotation::HepRotation(const CLHEP::HepEulerAngles &)
void CLHEP::HepRotation::HepRotation(const CLHEP::Hep3Vector &, const CLHEP::Hep3Vector &, const CLHEP::Hep3Vector &)
CLHEP::HepRotation & CLHEP::HepRotation::set(const CLHEP::Hep3Vector &, const CLHEP::Hep3Vector &, const CLHEP::Hep3Vector &)
CLHEP::HepRotation & CLHEP::HepRotation::setRows(const CLHEP::Hep3Vector &, const CLHEP::Hep3Vector &, const CLHEP::Hep3Vector &)
CLHEP::HepRotation & CLHEP::HepRotation::set(const CLHEP::HepRotationX &)
CLHEP::HepRotation & CLHEP::HepRotation::set(const CLHEP::HepRotationY &)
CLHEP::HepRotation & CLHEP::HepRotation::set(const CLHEP::HepRotationZ &)
CLHEP::HepRotation & CLHEP::HepRotation::operator=(const CLHEP::HepRotation &)
CLHEP::HepRotation & CLHEP::HepRotation::operator=(CLHEP::HepRotation &&)
CLHEP::HepRotation & CLHEP::HepRotation::operator=(const CLHEP::HepRotationX &)
CLHEP::HepRotation & CLHEP::HepRotation::operator=(const CLHEP::HepRotationY &)
CLHEP::HepRotation & CLHEP::HepRotation::operator=(const CLHEP::HepRotationZ &)
CLHEP::HepRotation & CLHEP::HepRotation::set(const CLHEP::HepRep3x3 &)
void CLHEP::HepRotation::HepRotation(const CLHEP::HepRep3x3 &)
CLHEP::Hep3Vector CLHEP::HepRotation::colX()
CLHEP::Hep3Vector CLHEP::HepRotation::colY()
CLHEP::Hep3Vector CLHEP::HepRotation::colZ()
CLHEP::Hep3Vector CLHEP::HepRotation::rowX()
CLHEP::Hep3Vector CLHEP::HepRotation::rowY()
CLHEP::Hep3Vector CLHEP::HepRotation::rowZ()
double CLHEP::HepRotation::xx()
double CLHEP::HepRotation::xy()
double CLHEP::HepRotation::xz()
double CLHEP::HepRotation::yx()
double CLHEP::HepRotation::yy()
double CLHEP::HepRotation::yz()
double CLHEP::HepRotation::zx()
double CLHEP::HepRotation::zy()
double CLHEP::HepRotation::zz()
CLHEP::HepRep3x3 CLHEP::HepRotation::rep3x3()
const CLHEP::HepRotation::HepRotation_row CLHEP::HepRotation::operator[](int)
double CLHEP::HepRotation::operator()(int, int)
double CLHEP::HepRotation::getPhi()
double CLHEP::HepRotation::getTheta()
double CLHEP::HepRotation::getPsi()
double CLHEP::HepRotation::phi()
double CLHEP::HepRotation::theta()
double CLHEP::HepRotation::psi()
CLHEP::HepEulerAngles CLHEP::HepRotation::eulerAngles()
double CLHEP::HepRotation::getDelta()
CLHEP::Hep3Vector CLHEP::HepRotation::getAxis()
double CLHEP::HepRotation::delta()
CLHEP::Hep3Vector CLHEP::HepRotation::axis()
CLHEP::HepAxisAngle CLHEP::HepRotation::axisAngle()
void CLHEP::HepRotation::getAngleAxis(double &, CLHEP::Hep3Vector &)
double CLHEP::HepRotation::phiX()
double CLHEP::HepRotation::phiY()
double CLHEP::HepRotation::phiZ()
double CLHEP::HepRotation::thetaX()
double CLHEP::HepRotation::thetaY()
double CLHEP::HepRotation::thetaZ()
CLHEP::HepLorentzVector CLHEP::HepRotation::col1()
CLHEP::HepLorentzVector CLHEP::HepRotation::col2()
CLHEP::HepLorentzVector CLHEP::HepRotation::col3()
CLHEP::HepLorentzVector CLHEP::HepRotation::col4()
CLHEP::HepLorentzVector CLHEP::HepRotation::row1()
CLHEP::HepLorentzVector CLHEP::HepRotation::row2()
CLHEP::HepLorentzVector CLHEP::HepRotation::row3()
CLHEP::HepLorentzVector CLHEP::HepRotation::row4()
double CLHEP::HepRotation::xt()
double CLHEP::HepRotation::yt()
double CLHEP::HepRotation::zt()
double CLHEP::HepRotation::tx()
double CLHEP::HepRotation::ty()
double CLHEP::HepRotation::tz()
double CLHEP::HepRotation::tt()
CLHEP::HepRep4x4 CLHEP::HepRotation::rep4x4()
void CLHEP::HepRotation::setPhi(double)
void CLHEP::HepRotation::setTheta(double)
void CLHEP::HepRotation::setPsi(double)
void CLHEP::HepRotation::setAxis(const CLHEP::Hep3Vector &)
void CLHEP::HepRotation::setDelta(double)
void CLHEP::HepRotation::decompose(CLHEP::HepAxisAngle &, CLHEP::Hep3Vector &)
void CLHEP::HepRotation::decompose(CLHEP::Hep3Vector &, CLHEP::HepAxisAngle &)
bool CLHEP::HepRotation::isIdentity()
int CLHEP::HepRotation::compare(const CLHEP::HepRotation &)
bool CLHEP::HepRotation::operator==(const CLHEP::HepRotation &)
bool CLHEP::HepRotation::operator!=(const CLHEP::HepRotation &)
bool CLHEP::HepRotation::operator<(const CLHEP::HepRotation &)
bool CLHEP::HepRotation::operator>(const CLHEP::HepRotation &)
bool CLHEP::HepRotation::operator<=(const CLHEP::HepRotation &)
bool CLHEP::HepRotation::operator>=(const CLHEP::HepRotation &)
double CLHEP::HepRotation::distance2(const CLHEP::HepRotation &)
double CLHEP::HepRotation::howNear(const CLHEP::HepRotation &)
bool CLHEP::HepRotation::isNear(const CLHEP::HepRotation &, double)
double CLHEP::HepRotation::distance2(const CLHEP::HepBoost &)
double CLHEP::HepRotation::distance2(const CLHEP::HepLorentzRotation &)
double CLHEP::HepRotation::howNear(const CLHEP::HepBoost &)
double CLHEP::HepRotation::howNear(const CLHEP::HepLorentzRotation &)
bool CLHEP::HepRotation::isNear(const CLHEP::HepBoost &, double)
bool CLHEP::HepRotation::isNear(const CLHEP::HepLorentzRotation &, double)
double CLHEP::HepRotation::norm2()
void CLHEP::HepRotation::rectify()
CLHEP::Hep3Vector CLHEP::HepRotation::operator()(const CLHEP::Hep3Vector &)
CLHEP::Hep3Vector CLHEP::HepRotation::operator*(const CLHEP::Hep3Vector &)
CLHEP::HepLorentzVector CLHEP::HepRotation::operator()(const CLHEP::HepLorentzVector &)
CLHEP::HepLorentzVector CLHEP::HepRotation::operator*(const CLHEP::HepLorentzVector &)
CLHEP::HepRotation CLHEP::HepRotation::operator*(const CLHEP::HepRotation &)
CLHEP::HepRotation CLHEP::HepRotation::operator*(const CLHEP::HepRotationX &)
CLHEP::HepRotation CLHEP::HepRotation::operator*(const CLHEP::HepRotationY &)
CLHEP::HepRotation CLHEP::HepRotation::operator*(const CLHEP::HepRotationZ &)
CLHEP::HepRotation & CLHEP::HepRotation::operator*=(const CLHEP::HepRotation &)
CLHEP::HepRotation & CLHEP::HepRotation::transform(const CLHEP::HepRotation &)
CLHEP::HepRotation & CLHEP::HepRotation::operator*=(const CLHEP::HepRotationX &)
CLHEP::HepRotation & CLHEP::HepRotation::operator*=(const CLHEP::HepRotationY &)
CLHEP::HepRotation & CLHEP::HepRotation::operator*=(const CLHEP::HepRotationZ &)
CLHEP::HepRotation & CLHEP::HepRotation::transform(const CLHEP::HepRotationX &)
CLHEP::HepRotation & CLHEP::HepRotation::transform(const CLHEP::HepRotationY &)
CLHEP::HepRotation & CLHEP::HepRotation::transform(const CLHEP::HepRotationZ &)
CLHEP::HepRotation & CLHEP::HepRotation::rotateX(double)
CLHEP::HepRotation & CLHEP::HepRotation::rotateY(double)
CLHEP::HepRotation & CLHEP::HepRotation::rotateZ(double)
CLHEP::HepRotation & CLHEP::HepRotation::rotate(double, const CLHEP::Hep3Vector &)
CLHEP::HepRotation & CLHEP::HepRotation::rotate(double, const CLHEP::Hep3Vector *)
CLHEP::HepRotation & CLHEP::HepRotation::rotateAxes(const CLHEP::Hep3Vector &, const CLHEP::Hep3Vector &, const CLHEP::Hep3Vector &)
CLHEP::HepRotation CLHEP::HepRotation::inverse()
CLHEP::HepRotation & CLHEP::HepRotation::invert()
double CLHEP::HepRotation::getTolerance()
double CLHEP::HepRotation::setTolerance(double)
void CLHEP::HepEulerAngles::HepEulerAngles(double, double, double)
double CLHEP::HepEulerAngles::getPhi()
double CLHEP::HepEulerAngles::phi()
CLHEP::HepEulerAngles::EA & CLHEP::HepEulerAngles::setPhi(double)
double CLHEP::HepEulerAngles::getTheta()
double CLHEP::HepEulerAngles::theta()
CLHEP::HepEulerAngles::EA & CLHEP::HepEulerAngles::setTheta(double)
double CLHEP::HepEulerAngles::getPsi()
double CLHEP::HepEulerAngles::psi()
CLHEP::HepEulerAngles::EA & CLHEP::HepEulerAngles::setPsi(double)
CLHEP::HepEulerAngles::EA & CLHEP::HepEulerAngles::set(double, double, double)
int CLHEP::HepEulerAngles::compare(const CLHEP::HepEulerAngles::EA &)
bool CLHEP::HepEulerAngles::operator==(const CLHEP::HepEulerAngles::EA &)
bool CLHEP::HepEulerAngles::operator!=(const CLHEP::HepEulerAngles::EA &)
bool CLHEP::HepEulerAngles::operator<(const CLHEP::HepEulerAngles::EA &)
bool CLHEP::HepEulerAngles::operator<=(const CLHEP::HepEulerAngles::EA &)
bool CLHEP::HepEulerAngles::operator>(const CLHEP::HepEulerAngles::EA &)
bool CLHEP::HepEulerAngles::operator>=(const CLHEP::HepEulerAngles::EA &)
double CLHEP::HepEulerAngles::getTolerance()
double CLHEP::HepEulerAngles::setTolerance(double)
bool CLHEP::HepEulerAngles::isNear(const CLHEP::HepEulerAngles::EA &, double)
double CLHEP::HepEulerAngles::howNear(const CLHEP::HepEulerAngles::EA &)
void CLHEP::HepRotation::HepRotation_row::HepRotation_row(const CLHEP::HepRotation &, int)
double CLHEP::HepRotation::HepRotation_row::operator[](int)
void CLHEP::HepBoost::HepBoost(const CLHEP::HepBoost &)
void CLHEP::HepBoost::HepBoost(CLHEP::HepBoost &&)
CLHEP::HepBoost & CLHEP::HepBoost::operator=(const CLHEP::HepBoost &)
CLHEP::HepBoost & CLHEP::HepBoost::operator=(CLHEP::HepBoost &&)
CLHEP::HepBoost & CLHEP::HepBoost::set(double, double, double)
void CLHEP::HepBoost::HepBoost(double, double, double)
CLHEP::HepBoost & CLHEP::HepBoost::set(const CLHEP::HepRep4x4Symmetric &)
void CLHEP::HepBoost::HepBoost(const CLHEP::HepRep4x4Symmetric &)
CLHEP::HepBoost & CLHEP::HepBoost::set(CLHEP::Hep3Vector, double)
void CLHEP::HepBoost::HepBoost(CLHEP::Hep3Vector, double)
CLHEP::HepBoost & CLHEP::HepBoost::set(const CLHEP::Hep3Vector &)
void CLHEP::HepBoost::HepBoost(const CLHEP::Hep3Vector &)
CLHEP::HepBoost & CLHEP::HepBoost::set(const CLHEP::HepBoostX &)
CLHEP::HepBoost & CLHEP::HepBoost::set(const CLHEP::HepBoostY &)
CLHEP::HepBoost & CLHEP::HepBoost::set(const CLHEP::HepBoostZ &)
void CLHEP::HepBoost::HepBoost(const CLHEP::HepBoostX &)
void CLHEP::HepBoost::HepBoost(const CLHEP::HepBoostY &)
void CLHEP::HepBoost::HepBoost(const CLHEP::HepBoostZ &)
double CLHEP::HepBoost::beta()
double CLHEP::HepBoost::gamma()
CLHEP::Hep3Vector CLHEP::HepBoost::boostVector()
CLHEP::Hep3Vector CLHEP::HepBoost::getDirection()
CLHEP::Hep3Vector CLHEP::HepBoost::direction()
double CLHEP::HepBoost::xx()
double CLHEP::HepBoost::xy()
double CLHEP::HepBoost::xz()
double CLHEP::HepBoost::xt()
double CLHEP::HepBoost::yx()
double CLHEP::HepBoost::yy()
double CLHEP::HepBoost::yz()
double CLHEP::HepBoost::yt()
double CLHEP::HepBoost::zx()
double CLHEP::HepBoost::zy()
double CLHEP::HepBoost::zz()
double CLHEP::HepBoost::zt()
double CLHEP::HepBoost::tx()
double CLHEP::HepBoost::ty()
double CLHEP::HepBoost::tz()
double CLHEP::HepBoost::tt()
CLHEP::HepLorentzVector CLHEP::HepBoost::col1()
CLHEP::HepLorentzVector CLHEP::HepBoost::col2()
CLHEP::HepLorentzVector CLHEP::HepBoost::col3()
CLHEP::HepLorentzVector CLHEP::HepBoost::col4()
CLHEP::HepLorentzVector CLHEP::HepBoost::row1()
CLHEP::HepLorentzVector CLHEP::HepBoost::row2()
CLHEP::HepLorentzVector CLHEP::HepBoost::row3()
CLHEP::HepLorentzVector CLHEP::HepBoost::row4()
CLHEP::HepRep4x4 CLHEP::HepBoost::rep4x4()
CLHEP::HepRep4x4Symmetric CLHEP::HepBoost::rep4x4Symmetric()
void CLHEP::HepBoost::decompose(CLHEP::HepRotation &, CLHEP::HepBoost &)
void CLHEP::HepBoost::decompose(CLHEP::HepAxisAngle &, CLHEP::Hep3Vector &)
void CLHEP::HepBoost::decompose(CLHEP::HepBoost &, CLHEP::HepRotation &)
void CLHEP::HepBoost::decompose(CLHEP::Hep3Vector &, CLHEP::HepAxisAngle &)
int CLHEP::HepBoost::compare(const CLHEP::HepBoost &)
bool CLHEP::HepBoost::operator==(const CLHEP::HepBoost &)
bool CLHEP::HepBoost::operator!=(const CLHEP::HepBoost &)
bool CLHEP::HepBoost::operator<=(const CLHEP::HepBoost &)
bool CLHEP::HepBoost::operator>=(const CLHEP::HepBoost &)
bool CLHEP::HepBoost::operator<(const CLHEP::HepBoost &)
bool CLHEP::HepBoost::operator>(const CLHEP::HepBoost &)
bool CLHEP::HepBoost::isIdentity()
double CLHEP::HepBoost::distance2(const CLHEP::HepBoost &)
double CLHEP::HepBoost::distance2(const CLHEP::HepBoostX &)
double CLHEP::HepBoost::distance2(const CLHEP::HepBoostY &)
double CLHEP::HepBoost::distance2(const CLHEP::HepBoostZ &)
double CLHEP::HepBoost::distance2(const CLHEP::HepRotation &)
double CLHEP::HepBoost::distance2(const CLHEP::HepLorentzRotation &)
double CLHEP::HepBoost::howNear(const CLHEP::HepBoost &)
bool CLHEP::HepBoost::isNear(const CLHEP::HepBoost &, double)
double CLHEP::HepBoost::howNear(const CLHEP::HepRotation &)
double CLHEP::HepBoost::howNear(const CLHEP::HepLorentzRotation &)
bool CLHEP::HepBoost::isNear(const CLHEP::HepRotation &, double)
bool CLHEP::HepBoost::isNear(const CLHEP::HepLorentzRotation &, double)
double CLHEP::HepBoost::norm2()
void CLHEP::HepBoost::rectify()
CLHEP::HepLorentzVector CLHEP::HepBoost::operator()(const CLHEP::HepLorentzVector &)
CLHEP::HepLorentzVector CLHEP::HepBoost::operator*(const CLHEP::HepLorentzVector &)
CLHEP::HepLorentzRotation CLHEP::HepBoost::operator*(const CLHEP::HepBoost &)
CLHEP::HepLorentzRotation CLHEP::HepBoost::operator*(const CLHEP::HepRotation &)
CLHEP::HepLorentzRotation CLHEP::HepBoost::operator*(const CLHEP::HepLorentzRotation &)
CLHEP::HepBoost CLHEP::HepBoost::inverse()
CLHEP::HepBoost & CLHEP::HepBoost::invert()
double CLHEP::HepBoost::getTolerance()
double CLHEP::HepBoost::setTolerance(double)
void CLHEP::HepLorentzRotation::HepLorentzRotation(const CLHEP::HepLorentzRotation &)
void CLHEP::HepLorentzRotation::HepLorentzRotation(CLHEP::HepLorentzRotation &&)
void CLHEP::HepLorentzRotation::HepLorentzRotation(const CLHEP::HepRotation &)
void CLHEP::HepLorentzRotation::HepLorentzRotation(const CLHEP::HepRotationX &)
void CLHEP::HepLorentzRotation::HepLorentzRotation(const CLHEP::HepRotationY &)
void CLHEP::HepLorentzRotation::HepLorentzRotation(const CLHEP::HepRotationZ &)
void CLHEP::HepLorentzRotation::HepLorentzRotation(const CLHEP::HepBoost &)
void CLHEP::HepLorentzRotation::HepLorentzRotation(const CLHEP::HepBoostX &)
void CLHEP::HepLorentzRotation::HepLorentzRotation(const CLHEP::HepBoostY &)
void CLHEP::HepLorentzRotation::HepLorentzRotation(const CLHEP::HepBoostZ &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::operator=(CLHEP::HepLorentzRotation &&)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::operator=(const CLHEP::HepLorentzRotation &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::operator=(const CLHEP::HepRotation &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::operator=(const CLHEP::HepBoost &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::set(double, double, double)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::set(const CLHEP::Hep3Vector &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::set(const CLHEP::HepRotation &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::set(const CLHEP::HepRotationX &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::set(const CLHEP::HepRotationY &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::set(const CLHEP::HepRotationZ &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::set(const CLHEP::HepBoost &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::set(const CLHEP::HepBoostX &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::set(const CLHEP::HepBoostY &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::set(const CLHEP::HepBoostZ &)
void CLHEP::HepLorentzRotation::HepLorentzRotation(double, double, double)
void CLHEP::HepLorentzRotation::HepLorentzRotation(const CLHEP::Hep3Vector &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::set(const CLHEP::HepBoost &, const CLHEP::HepRotation &)
void CLHEP::HepLorentzRotation::HepLorentzRotation(const CLHEP::HepBoost &, const CLHEP::HepRotation &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::set(const CLHEP::HepRotation &, const CLHEP::HepBoost &)
void CLHEP::HepLorentzRotation::HepLorentzRotation(const CLHEP::HepRotation &, const CLHEP::HepBoost &)
void CLHEP::HepLorentzRotation::HepLorentzRotation(const CLHEP::HepLorentzVector &, const CLHEP::HepLorentzVector &, const CLHEP::HepLorentzVector &, const CLHEP::HepLorentzVector &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::set(const CLHEP::HepLorentzVector &, const CLHEP::HepLorentzVector &, const CLHEP::HepLorentzVector &, const CLHEP::HepLorentzVector &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::setRows(const CLHEP::HepLorentzVector &, const CLHEP::HepLorentzVector &, const CLHEP::HepLorentzVector &, const CLHEP::HepLorentzVector &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::set(const CLHEP::HepRep4x4 &)
void CLHEP::HepLorentzRotation::HepLorentzRotation(const CLHEP::HepRep4x4 &)
double CLHEP::HepLorentzRotation::xx()
double CLHEP::HepLorentzRotation::xy()
double CLHEP::HepLorentzRotation::xz()
double CLHEP::HepLorentzRotation::xt()
double CLHEP::HepLorentzRotation::yx()
double CLHEP::HepLorentzRotation::yy()
double CLHEP::HepLorentzRotation::yz()
double CLHEP::HepLorentzRotation::yt()
double CLHEP::HepLorentzRotation::zx()
double CLHEP::HepLorentzRotation::zy()
double CLHEP::HepLorentzRotation::zz()
double CLHEP::HepLorentzRotation::zt()
double CLHEP::HepLorentzRotation::tx()
double CLHEP::HepLorentzRotation::ty()
double CLHEP::HepLorentzRotation::tz()
double CLHEP::HepLorentzRotation::tt()
CLHEP::HepLorentzVector CLHEP::HepLorentzRotation::col1()
CLHEP::HepLorentzVector CLHEP::HepLorentzRotation::col2()
CLHEP::HepLorentzVector CLHEP::HepLorentzRotation::col3()
CLHEP::HepLorentzVector CLHEP::HepLorentzRotation::col4()
CLHEP::HepLorentzVector CLHEP::HepLorentzRotation::row1()
CLHEP::HepLorentzVector CLHEP::HepLorentzRotation::row2()
CLHEP::HepLorentzVector CLHEP::HepLorentzRotation::row3()
CLHEP::HepLorentzVector CLHEP::HepLorentzRotation::row4()
CLHEP::HepRep4x4 CLHEP::HepLorentzRotation::rep4x4()
const CLHEP::HepLorentzRotation::HepLorentzRotation_row CLHEP::HepLorentzRotation::operator[](int)
double CLHEP::HepLorentzRotation::operator()(int, int)
void CLHEP::HepLorentzRotation::decompose(CLHEP::Hep3Vector &, CLHEP::HepAxisAngle &)
void CLHEP::HepLorentzRotation::decompose(CLHEP::HepBoost &, CLHEP::HepRotation &)
void CLHEP::HepLorentzRotation::decompose(CLHEP::HepAxisAngle &, CLHEP::Hep3Vector &)
void CLHEP::HepLorentzRotation::decompose(CLHEP::HepRotation &, CLHEP::HepBoost &)
int CLHEP::HepLorentzRotation::compare(const CLHEP::HepLorentzRotation &)
bool CLHEP::HepLorentzRotation::operator==(const CLHEP::HepLorentzRotation &)
bool CLHEP::HepLorentzRotation::operator!=(const CLHEP::HepLorentzRotation &)
bool CLHEP::HepLorentzRotation::operator<=(const CLHEP::HepLorentzRotation &)
bool CLHEP::HepLorentzRotation::operator>=(const CLHEP::HepLorentzRotation &)
bool CLHEP::HepLorentzRotation::operator<(const CLHEP::HepLorentzRotation &)
bool CLHEP::HepLorentzRotation::operator>(const CLHEP::HepLorentzRotation &)
bool CLHEP::HepLorentzRotation::isIdentity()
double CLHEP::HepLorentzRotation::distance2(const CLHEP::HepBoost &)
double CLHEP::HepLorentzRotation::distance2(const CLHEP::HepRotation &)
double CLHEP::HepLorentzRotation::distance2(const CLHEP::HepLorentzRotation &)
double CLHEP::HepLorentzRotation::howNear(const CLHEP::HepBoost &)
double CLHEP::HepLorentzRotation::howNear(const CLHEP::HepRotation &)
double CLHEP::HepLorentzRotation::howNear(const CLHEP::HepLorentzRotation &)
bool CLHEP::HepLorentzRotation::isNear(const CLHEP::HepBoost &, double)
bool CLHEP::HepLorentzRotation::isNear(const CLHEP::HepRotation &, double)
bool CLHEP::HepLorentzRotation::isNear(const CLHEP::HepLorentzRotation &, double)
double CLHEP::HepLorentzRotation::norm2()
void CLHEP::HepLorentzRotation::rectify()
CLHEP::HepLorentzVector CLHEP::HepLorentzRotation::vectorMultiplication(const CLHEP::HepLorentzVector &)
CLHEP::HepLorentzVector CLHEP::HepLorentzRotation::operator()(const CLHEP::HepLorentzVector &)
CLHEP::HepLorentzVector CLHEP::HepLorentzRotation::operator*(const CLHEP::HepLorentzVector &)
CLHEP::HepLorentzRotation CLHEP::HepLorentzRotation::matrixMultiplication(const CLHEP::HepRep4x4 &)
CLHEP::HepLorentzRotation CLHEP::HepLorentzRotation::operator*(const CLHEP::HepBoost &)
CLHEP::HepLorentzRotation CLHEP::HepLorentzRotation::operator*(const CLHEP::HepRotation &)
CLHEP::HepLorentzRotation CLHEP::HepLorentzRotation::operator*(const CLHEP::HepLorentzRotation &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::operator*=(const CLHEP::HepBoost &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::operator*=(const CLHEP::HepRotation &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::operator*=(const CLHEP::HepLorentzRotation &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::transform(const CLHEP::HepBoost &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::transform(const CLHEP::HepRotation &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::transform(const CLHEP::HepLorentzRotation &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::rotateX(double)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::rotateY(double)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::rotateZ(double)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::rotate(double, const CLHEP::Hep3Vector &)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::rotate(double, const CLHEP::Hep3Vector *)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::boostX(double)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::boostY(double)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::boostZ(double)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::boost(double, double, double)
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::boost(const CLHEP::Hep3Vector &)
CLHEP::HepLorentzRotation CLHEP::HepLorentzRotation::inverse()
CLHEP::HepLorentzRotation & CLHEP::HepLorentzRotation::invert()
double CLHEP::HepLorentzRotation::getTolerance()
double CLHEP::HepLorentzRotation::setTolerance(double)
void G4PVData::initialize()
void G4VPhysicalVolume::G4VPhysicalVolume(G4RotationMatrix *, const G4ThreeVector &, const G4String &, G4LogicalVolume *, G4VPhysicalVolume *)
G4bool G4VPhysicalVolume::operator==(const G4VPhysicalVolume &)
G4RotationMatrix * G4VPhysicalVolume::GetObjectRotation()
G4RotationMatrix G4VPhysicalVolume::GetObjectRotationValue()