Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Data Structures
Here are the data structures with brief descriptions:
[detail level 1234]
 Nboost
 NCexmcPrivate
 Ncheprep
 NCLHEP
 NCompileTimeConstraints
 Ndemo
 Nemcalc_gui
 NExN03
 NG4DimensionedTypeUtils
 NG4ExpConsts
 NG4INCL
 NG4InuclSpecialFunctions
 NG4LogConsts
 NHepGeom
 NHEPREP
 NHepTool
 NJA
 NLesson1
 NLesson1withN03
 NLesson1Wx
 NLesson2Wx
 Nmcscore
 Nmcscorerootio
 NpyG4MagneticField
 NpyG4UserStackingAction
 NpyG4VModularPhysicsList
 NpyG4VPhysicsConstructor
 NpyG4VSensitiveDetector
 NpyG4VUserDetectorConstruction
 NpyG4VUserPhysicsList
 NpyG4VUserPrimaryGeneratorAction
 Npython
 Npython3
 Nread_gdml
 Nroot_test
 Ntest
 Ntestem0
 Ntools
 NUUtils
 C__1DSortOut
 C_ListRef
 Caccumulated_histogramAn interpolating_function_p which is the cumulative integral of a histogram.Note than binedges should be one element longer than binheights, since the lower & upper edges are specified. Note that this is a malformed spline, since the second derivatives are all zero, so it has less continuity. Also, note that the bin edges can be given in backwards order to generate the reversed accumulation (starting at the high end)
 CAClass
 CActionInitialization
 CAddressTable
 CAnalysis
 CAnalysisManager
 Carrhenius_interpolating_function_pA spline with X in reciprocal space and Y transformed in log space.Most useful for thermodynamic types of data where Y is roughly A*exp(-B/x). Typical examples are reaction rate data, and thermistor calibration data
 CATTRIBUTE
 Cattribute_id
 CB01ActionInitialization
 CB01DetectorConstruction
 CB01PrimaryGeneratorAction
 CB01Run
 CB01RunAction
 CB02ActionInitialization
 CB02DetectorConstruction
 CB02ImportanceDetectorConstruction
 CB02PrimaryGeneratorAction
 CB02PVolumeStore
 CB02Run
 CB02RunAction
 CB03ActionInitialization
 CB03DetectorConstruction
 CB03ImportanceDetectorConstruction
 CB03PhysicsList
 CB03PrimaryGeneratorAction
 CB03PVolumeStore
 CB03Run
 CB03RunAction
 CB1ActionInitializationAction initialization class
 CB1ConActionInitialization
 CB1ConRun
 CB1ConRunAction
 CB1DetectorConstructionDetector construction class to define materials and geometry
 CB1EventAction
 CB1PrimaryGeneratorAction
 CB1Run
 CB1RunAction
 CB1SteppingAction
 CB2ActionInitialization
 CB2aDetectorConstruction
 CB2aDetectorMessenger
 CB2bChamberParameterisation
 CB2bDetectorConstruction
 CB2bDetectorMessenger
 CB2EventActionEvent action class
 CB2PrimaryGeneratorAction
 CB2RunActionRun action class
 CB2TrackerHit
 CB2TrackerSD
 CB3ActionInitialization
 CB3DetectorConstruction
 CB3PhysicsList
 CB3PrimaryGeneratorAction
 CB3Run
 CB3RunActionRun action class
 CB3StackingAction
 CB4aActionInitialization
 CB4aEventAction
 CB4aSteppingAction
 CB4bActionInitialization
 CB4bEventAction
 CB4bRunAction
 CB4bRunData
 CB4bSteppingAction
 CB4cActionInitialization
 CB4cCalorHit
 CB4cCalorimeterSD
 CB4cDetectorConstruction
 CB4cEventAction
 CB4dActionInitialization
 CB4dDetectorConstruction
 CB4DetectorConstruction
 CB4dEventAction
 CB4PrimaryGeneratorAction
 CB4RunAction
 CB5ActionInitializationAction initialization class
 CB5CellParameterisationEM Calorimeter cell parameterisation
 CB5DetectorConstructionDetector construction
 CB5DriftChamberHit
 CB5DriftChamberSDDrift chamber sensitive detector
 CB5EmCalorimeterHit
 CB5EmCalorimeterSDEM calorimeter sensitive detector
 CB5EventActionEvent action
 CB5HadCalorimeterHit
 CB5HadCalorimeterSDHadron calorimeter sensitive detector
 CB5HodoscopeHit
 CB5HodoscopeSDHodoscope sensitive detector
 CB5MagneticFieldMagnetic field
 CB5PrimaryGeneratorAction
 CB5RunActionRun action class
 CBClass
 Cbinding
 Cblock
 CBrachyActionInitialization
 CBrachyAnalysisManager
 CBrachyDetectorConstruction
 CBrachyDetectorConstructionI
 CBrachyDetectorConstructionIr
 CBrachyDetectorConstructionLeipzig
 CBrachyDetectorMessenger
 CBrachyFactory
 CBrachyFactoryI
 CBrachyFactoryIr
 CBrachyFactoryLeipzig
 CBrachyMaterial
 CBrachyPhysicsList
 CBrachyPrimaryGeneratorAction
 CBrachyRunAction
 CBrachySteppingAction
 CBrachyUserScoreWriter
 Cc2_arrhenius_function_transformationTransformation of a function in and out of Arrhenius (1/x vs. log(y)) space
 Cc2_binary_functionProvides support for c2_function objects which are constructed from two other c2_function objects
 Cc2_cached_function_pA container into which any other c2_function can be dropped.It allows a function to be pre-evaluated at a point, and used at multiple places in an expression efficiently. If it is re-evaluated at the previous point, it returns the remembered values; otherwise, it re-evauates the function at the new point
 Cc2_classic_function_pContainer into which any conventional c-style function can be dropped, to create a degenerate c2_function without derivatives. Mostly useful for sampling into interpolating functions. construct a reference to this with c2_classic_function()The factory function c2_factory::classic_function() creates *new c2_classic_function_p()
 Cc2_composed_function_pProvides function composition (nesting)This allows evaluation of f(g(x)) where f and g are c2_function objects
 Cc2_connector_function_pCreate a c2_function which smoothly connects two other c2_functions.This takes two points and generates a polynomial which matches two c2_function arguments at those two points, with two derivatives at each point, and an arbitrary value at the center of the region. It is useful for splicing together functions over rough spots (0/0, for example)
 Cc2_const_plugin_function_pC2_plugin_function_p which promises not to fiddle with the plugged function.The factory function c2_factory::const_plugin_function() creates *new c2_const_plugin_function_p()
 Cc2_const_ptrCreate a container for a c2_function which handles the reference counting.It is useful as a smart container to hold a c2_function and keep the reference count correct. The recommended way for a class to store a c2_function which is handed in from the outside is for it to have a c2_ptr member into which the passed-in function is stored. This way, when the class instance is deleted, it will automatically dereference any function which it was handed
 Cc2_constant_pC2_function which is constantThe factory function c2_factory::constant() creates *new c2_constant_p()
 Cc2_cos_pCompute cos(x) with its derivatives.The factory function c2_factory::cos() creates *new c2_cos_p
 Cc2_diff_pCreate a c2_function which is the difference of two other c2_functions.This should always be constructed using c2_function::operator-()
 Cc2_exceptionException class for c2_function operations
 Cc2_exp_pCompute exp(x) with its derivatives.The factory function c2_factory::exp() creates *new c2_exp_p
 Cc2_factoryFactory of pre-templated c2_function generators
 Cc2_fblockStructure used to hold evaluated function data at a point
 Cc2_functionParent class for all c2_functions.c2_functions know their value, first, and second derivative at almost every point. They can be efficiently combined with binary operators, via c2_binary_function, composed via c2_composed_function_, have their roots found via find_root(), and be adaptively integrated via partial_integrals() or integral(). They also can carry information with them about how to find 'interesting' points on the function. This information is set with set_sampling_grid() and extracted with get_sampling_grid()
 Cc2_function_transformationTransformation of a function in and out of a coordinate space, using 2 c2_transformations
 Cc2_identity_pCompute x with its derivatives.The factory function c2_factory::identity() creates *new c2_identity_p
 Cc2_inverse_function_pCreate the formal inverse function of another functionfor example, given a c2_function f
 Cc2_lin_lin_function_transformationTransformation of a function in and out of lin-lin space
 Cc2_lin_log_function_transformationTransformation of a function in and out of lin-log space
 Cc2_linear_pCreate a linear mapping of another functionfor example, given a c2_function f
 Cc2_log_lin_function_transformationTransformation of a function in and out of log-lin space
 Cc2_log_log_function_transformationTransformation of a function in and out of log-log space
 Cc2_log_pCompute log(x) with its derivatives.The factory function c2_factory::log() creates *new c2_log_p
 Cc2_piecewise_function_pCreate a c2_function which is a piecewise assembly of other c2_functions.The functions must have increasing, non-overlapping domains. Any empty space between functions will be filled with a linear interpolation
 Cc2_plugin_function_pContainer into which any other c2_function can be dropped, to allow expressions with replacable components.It is useful for plugging different InterpolatingFunctions into a c2_function expression. It saves a lot of effort in other places with casting away const declarations
 Cc2_power_law_pCreate a power law mapping of another functionfor example, given a c2_function f
 Cc2_product_pCreate a c2_function which is the product of two other c2_functions.This should always be constructed using c2_function::operator*()
 Cc2_ptrCreate a container for a c2_function which handles the reference counting
 Cc2_quadratic_pCreate a quadratic mapping of another functionfor example, given a c2_function f
 Cc2_ratio_pCreate a c2_function which is the ratio of two other c2_functions.This should always be constructed using c2_function::operator/()
 Cc2_recip_pCompute scale/x with its derivatives.The factory function c2_factory::recip() creates *new c2_recip_p
 Cc2_scaled_function_pCreate a very lightweight method to return a scalar multiple of another function. \ \The factory function c2_factory::scaled_function() creates *new c2_scaled_function_p
 Cc2_sin_pCompute sin(x) with its derivatives.The factory function c2_factory::sin() creates *new c2_sin_p
 Cc2_sqrt_pCompute sqrt(x) with its derivatives.The factory function c2_factory::sqrt() creates *new c2_sqrt_p()
 Cc2_sum_pCreate a c2_function which is the sum of two other c2_function objects.This should always be constructed using c2_function::operator+()
 Cc2_tan_pCompute tan(x) with its derivatives.The factory function c2_factory::tan() creates *new c2_tan_p
 Cc2_transformationTransformation of a coordinate, including an inverse
 Cc2_transformation_linearIdentity transform
 Cc2_transformation_logLog axis transform
 Cc2_transformation_recipReciprocal axis transform
 Cc2_typed_ptrCreate a non-generic container for a c2_function which handles the reference counting
 CcacheEl_t
 CCacheValue
 CCall
 CCB_G4UserEventAction
 CCB_G4UserRunAction
 CCB_G4UserSteppingAction
 CCB_G4UserTrackingAction
 CCB_XBase
 CCCalAMaterial
 CCCalDataSet
 CCCalDetector
 CCCalDetectorConstruction
 CCCalEcal
 CCCalEcalOrganization
 CCCalEndOfEventAction
 CCCalG4Able
 CCCalG4Ecal
 CCCalG4Hall
 CCCalG4Hcal
 CCCalG4Hit
 CCCalGeometryConfiguration
 CCCalHall
 CCCalHcal
 CCCalHcalOrganization
 CCCalHit
 CCCalMagneticField
 CCCalMaterial
 CCCalMaterialFactory
 CCCaloOrganization
 CCCaloSD
 CCCalPrimaryGeneratorAction
 CCCalPrimaryGeneratorMessenger
 CCCalRotationMatrixFactory
 CCCalRunAction
 CCCalSDList
 CCCalSensAssign
 CCCalSensitiveConfiguration
 CCCalSensitiveDetectors
 CCCalStackingAction
 CCCalSteppingAction
 CCCalVisualisable
 CCCalVOrganization
 Cccdpm25bufueh
 Cccdpm25bufues
 Cccdpm25casadi
 Cccdpm25cmhico
 Cccdpm25collap
 Cccdpm25colle
 Cccdpm25collis
 Cccdpm25coulo
 Cccdpm25cronin
 Cccdpm25diffra
 Cccdpm25diqi
 Cccdpm25diqrej
 Cccdpm25diqsum
 Cccdpm25diquax
 Cccdpm25dpar
 Cccdpm25dprin
 Cccdpm25dropjj
 Cccdpm25droppt
 Cccdpm25dshm
 Cccdpm25dtumat
 Cccdpm25edens
 Cccdpm25evappp
 Cccdpm25extevt
 Cccdpm25ferfor
 Cccdpm25final
 Cccdpm25fluctu
 Cccdpm25frbkcm
 Cccdpm25glaber
 Cccdpm25gluspl
 Cccdpm25hadthr
 Cccdpm25hboo
 Cccdpm25hdjase
 Cccdpm25hettp
 Cccdpm25hkkevt
 Cccdpm25ifragm
 Cccdpm25ifroto
 Cccdpm25inpflg
 Cccdpm25kglaub
 Cccdpm25ncouch
 Cccdpm25ncoucs
 Cccdpm25ncshxx
 Cccdpm25nncms
 Cccdpm25nstari
 Cccdpm25nucc
 Cccdpm25nuccc
 Cccdpm25nucimp
 Cccdpm25nuclea
 Cccdpm25nucros
 Cccdpm25paname
 Cccdpm25parevt
 Cccdpm25pomtab
 Cccdpm25pomtyp
 Cccdpm25popcck
 Cccdpm25popcor
 Cccdpm25projk
 Cccdpm25promu
 Cccdpm25pshow
 Cccdpm25ptlarg
 Cccdpm25ptsamp
 Cccdpm25pydat1
 Cccdpm25recom
 Cccdpm25rptshm
 Cccdpm25seadiq
 Cccdpm25seaqxx
 Cccdpm25seasu3
 Cccdpm25secint
 Cccdpm25shmakl
 Cccdpm25sigma
 Cccdpm25sincha
 Cccdpm25stars
 Cccdpm25strufu
 Cccdpm25taufo
 Cccdpm25user1
 Cccdpm25user2
 Cccdpm25vxsvd
 Cccdpm25xseadi
 Cccdpm25xsecnu
 Cccdpm25xsecpt
 Cccdpm25zentra
 Ccchijingbveg1
 Ccchijinghijcrdn
 Ccchijinghijdat
 Ccchijinghijjet1
 Ccchijinghijjet2
 Ccchijinghijjet4
 Ccchijinghimain1
 Ccchijinghimain2
 Ccchijinghiparnt
 Ccchijinghipyint
 Ccchijinghistrng
 Ccchijingranseed
 Ccchijingseedvax
 Cccurqmd13aios
 Cccurqmd13boxic
 Cccurqmd13boxrc
 Cccurqmd13brwignorm
 Cccurqmd13cgks
 Cccurqmd13colltab
 Cccurqmd13comseed
 Cccurqmd13const
 Cccurqmd13coor
 Cccurqmd13coparm
 Cccurqmd13cuts
 Cccurqmd13decaywidth
 Cccurqmd13energies
 Cccurqmd13factorials
 Cccurqmd13ffermi
 Cccurqmd13fnewpart
 Cccurqmd13frag
 Cccurqmd13frcoor
 Cccurqmd13FRGCPA
 Cccurqmd13FRGSPA
 Cccurqmd13inewpart
 Cccurqmd13ini
 Cccurqmd13input2
 Cccurqmd13inputs
 Cccurqmd13isys
 Cccurqmd13itdelay
 Cccurqmd13logic
 Cccurqmd13loptions
 Cccurqmd13mdprop
 Cccurqmd13normsplin
 Cccurqmd13options
 Cccurqmd13optstrings
 Cccurqmd13peq
 Cccurqmd13pots
 Cccurqmd13protarints
 Cccurqmd13protarreals
 Cccurqmd13resonances
 Cccurqmd13rnewpart
 Cccurqmd13rsys
 Cccurqmd13rtdelay
 Cccurqmd13scoor
 Cccurqmd13sigtabi
 Cccurqmd13sigtabr
 Cccurqmd13sisys
 Cccurqmd13spdata
 Cccurqmd13ssys
 Cccurqmd13stables
 Cccurqmd13svinfo
 Cccurqmd13sys
 Cccurqmd13tabnames
 Cccurqmd13urqmdparams
 Cccurqmd13values
 Cccurqmd13versioning
 Cccurqmd13xsections
 CCellParameterisation
 CCexmcAngularRange
 CCexmcChargeExchangeProductionModel
 CCexmcChargeExchangeReconstructor
 CCexmcChargeExchangeReconstructorMessenger
 CCexmcCmdLineData
 CCexmcEnergyDepositDigitizer
 CCexmcEnergyDepositDigitizerMessenger
 CCexmcEnergyDepositInCalorimeter
 CCexmcEnergyDepositInLeftRightSet
 CCexmcEnergyDepositStore
 CCexmcEventAction
 CCexmcEventActionMessenger
 CCexmcEventInfo
 CCexmcException
 CCexmcFakeCrossSectionData
 CCexmcHadronicPhysics
 CCexmcHadronicProcess
 CCexmcIncidentParticleTrackInfo
 CCexmcMessenger
 CCexmcParticleGun
 CCexmcParticleGunMessenger
 CCexmcPhaseSpaceGenerator
 CCexmcPhaseSpaceOutVectorElement
 CCexmcPhysicsList
 CCexmcPhysicsManager
 CCexmcPhysicsManagerMessenger
 CCexmcPrimaryGeneratorAction
 CCexmcPrimaryGeneratorActionMessenger
 CCexmcPrimitiveScorer
 CCexmcProductionModel
 CCexmcProductionModelData
 CCexmcProductionModelFactory
 CCexmcProductionModelMessenger
 CCexmcReconstructor
 CCexmcReconstructorMessenger
 CCexmcReimplementedGenbod
 CCexmcRun
 CCexmcRunAction
 CCexmcRunManager
 CCexmcRunManagerMessenger
 CCexmcScenePrimitives
 CCexmcScenePrimitivesMessenger
 CCexmcSensitiveDetectorMessenger
 CCexmcSetup
 CCexmcSimpleEnergyDeposit
 CCexmcSimpleRangeWithValue
 CCexmcSteppingAction
 CCexmcStudiedPhysics
 CCexmcStudiedProcess
 CCexmcTrackInfo
 CCexmcTrackingAction
 CCexmcTrackPointInfo
 CCexmcTrackPoints
 CCexmcTrackPointsDigitizer
 CCexmcTrackPointsFilter
 CCexmcTrackPointsInCalorimeter
 CCexmcTrackPointsInLeftRightSet
 CCexmcTrackPointsStore
 CchannelID_s
 CCheckVolumeSD
 CChromosomeParameterisation
 CCLibSymbolInfo
 CCML2Acc1
 CCML2Acc1Messenger
 CCML2AcceleratorConstruction
 CCML2AcceleratorConstructionMessenger
 CCML2CInputData
 CCML2Convergence
 CCML2DummySD
 CCML2EventAction
 CCML2ExpVoxels
 CCML2MainMessenger
 CCML2Ph_BoxInBox
 CCML2Ph_FullWater
 CCML2PhantomConstruction
 CCML2PhantomConstructionMessenger
 CCML2PhaseSpaces
 CCML2PrimaryGenerationAction
 CCML2PrimaryGenerationActionMessenger
 CCML2ReadOutGeometry
 CCML2RunAction
 CCML2SDWithParticle
 CCML2SDWithVoxels
 CCML2SteppingAction
 CCML2TrackingAction
 CCML2WorldConstruction
 Ccode
 CCollimator100BeamLine
 CCollimator100BeamLineMessenger
 CCollimator40BeamLine
 CCollimator40BeamLineMessenger
 CCollimator50BeamLine
 CCollimator50BeamLineMessenger
 CCollimator60BeamLine
 CCollimator60BeamLineMessenger
 CCollimator70BeamLine
 CCollimator70BeamLineMessenger
 CCollimator80BeamLine
 CCollimator80BeamLineMessenger
 Ccomparator
 CCompareMaterial
 CcompDoubleWithPrecision
 CcompMoleculeP
 CCompMoleculePointer
 Cconfig_s
 CCONTENT_SCAFFOLD
 CcrossSectionData_s
 Cct_data_s
 CD1232
 CDecay
 CDEFAULT_ATTRIBUTE
 CDelete
 CDeleteCollisionInitialState
 CDeleteDynamicParticle
 CDeleteKineticTrack
 CDeleteLevel
 CDeleteParton
 CDeleteReactionProduct
 CDeleteString
 CDeleteVSplitableHadron
 CDetectorConstruction
 CDetectorMessenger
 CDicomActionInitialization
 CDicomDetectorConstruction
 CDicomEventAction
 CDicomHandler
 CDicomIntersectVolumeManages intersections of DICOM files with volumes
 CDicomNestedParamDetectorConstruction
 CDicomNestedPhantomParameterisationImplements a G4VNestedParameterisation
 CDicomPartialDetectorConstruction
 CDicomPhantomParameterisationColour
 CDicomPhantomZSliceHeader
 CDicomPhantomZSliceMerged
 CDicomPhysicsList
 CDicomPrimaryGeneratorAction
 CDicomRegularDetectorConstruction
 CDicomRun
 CDicomRunAction
 CDMXDetectorConstruction
 CDMXDetectorMessenger
 CDMXEventAction
 CDMXEventActionMessenger
 CDMXMaxTimeCuts
 CDMXMinEkineCuts
 CDMXParticleSource
 CDMXParticleSourceMessenger
 CDMXPhysicsList
 CDMXPmtHit
 CDMXPmtSD
 CDMXPrimaryGeneratorAction
 CDMXRunAction
 CDMXRunActionMessenger
 CDMXScintHit
 CDMXScintSD
 CDMXSpecialCuts
 CDMXStackingAction
 CDMXStackingActionMessenger
 CDMXSteppingAction
 CDMXSteppingActionMessenger
 CDTD
 CDumpFrames
 CE_isoAng
 CE_P_E_isoAng
 CElectronActionInitialization
 CElectronBenchmarkDetector
 CElectronBenchmarkDetectorMessenger
 CElectronEventAction
 CElectronPrimaryGeneratorAction
 CElectronRun
 CElectronRunAction
 CELEMENT_TYPE
 CEm10CalorHit
 CEm10CalorimeterSD
 CEm10DetectorConstruction
 CEm10DetectorMessenger
 CEm10EventAction
 CEm10EventActionMessenger
 CEm10Materials
 CEm10PhysicsList
 CEm10PhysicsListMessenger
 CEm10PrimaryGeneratorAction
 CEm10PrimaryGeneratorMessenger
 CEm10RunAction
 CEm10RunMessenger
 CEm10StepCut
 CEm10SteppingAction
 CEm10SteppingVerbose
 CEm10TrackingAction
 CEm10XTRTransparentRegRadModel
 CEmAcceptance
 CEMField
 Cencoding
 CENTITY
 CeOccComp
 CeRositaDetectorConstruction
 CeRositaEventAction
 CeRositaPhysicsList
 CeRositaPrimaryGeneratorAction
 CeRositaRunAction
 CeRositaSteppingAction
 CeRositaSteppingVerbose
 CeRositaTrackerHit
 CeRositaTrackerSD
 CEventAction
 CEventActionMessenger
 CEventMessenger
 CExErrorDetectorConstruction
 CExErrorDetectorMessenger
 CExErrorMagneticField
 CExG4DetectorConstruction01Simple detector construction with only a world volume
 CExG4DetectorConstruction01Messenger
 CExG4DetectorConstruction02Simple detector construction with a box volume placed in a world
 CExG4DetectorConstruction02Messenger
 CExG4EventAction01
 CExG4EventAction01Messenger
 CExG4PhysicsList00Physics list with geantino and charged geantino only
 CExG4PrimaryGeneratorAction01The primary generator class with particle gun
 CExG4PrimaryGeneratorAction02The primary generator class with general particle source
 CExG4RunAction01
 CExG4RunAction01Messenger
 CExGflashActionInitialization
 CExGflashDetectorConstruction
 CExGflashEventAction
 CExGflashHit
 CExGflashPhysicsList
 CExGflashPrimaryGeneratorAction
 CExGflashRunAction
 CExGflashSensitiveDetector
 CexGPSActionInitialization
 CexGPSEventAction
 CexGPSEventActionMessenger
 CexGPSGeometryConstruction
 CexGPSHistoManager
 CexGPSHistoMessenger
 CexGPSPhysicsList
 CexGPSPrimaryGeneratorAction
 CexGPSRunAction
 CExN01DetectorConstruction
 CExN01PhysicsList
 CExN02ChamberParameterisation
 CExN02DetectorConstruction
 CExN02DetectorMessenger
 CExN02EventAction
 CExN02MagneticField
 CExN02PhysicsList
 CExN02PrimaryGeneratorAction
 CExN02RunAction
 CExN02SteppingAction
 CExN02SteppingVerbose
 CExN02TrackerHit
 CExN02TrackerSD
 CExN03DetectorConstruction
 CExN03DetectorMessenger
 CExN04CalorimeterHit
 CExN04CalorimeterParametrisation
 CExN04CalorimeterROGeometry
 CExN04CalorimeterSD
 CExN04DetectorConstruction
 CExN04DummySD
 CExN04EMPhysics
 CExN04EventAction
 CExN04Field
 CExN04MuonHit
 CExN04MuonSD
 CExN04PrimaryGeneratorAction
 CExN04PrimaryGeneratorMessenger
 CExN04RunAction
 CExN04StackingAction
 CExN04StackingActionMessenger
 CExN04SteppingAction
 CExN04SteppingVerbose
 CExN04TrackerHit
 CExN04TrackerParametrisation
 CExN04TrackerSD
 CExN04TrackingAction
 CExP01ChamberParameterisationChamber parameterisation for the persistency example
 CExP01DetectorConstructionDetector Construction for the persistency example
 CExP01DetectorMessengerDetector messenger for the persistency example
 CExP01EventActionEvent action for the persistency example
 CExP01MagneticFieldMagnetic field for the persistency example
 CExP01PhysicsListPhysics list for the persistency example
 CExP01PrimaryGeneratorActionPrimary generator action for the persistency example
 CExP01RunActionRun action for the persistency example
 CExP01SteppingActionStepping action for the persistency example
 CExP01SteppingVerboseStepping verbose for the persistency example
 CExP01TrackerHitHit implementation for the persistency example
 CExP01TrackerSDSensitive detector implementation for the ROOT hits persistency example
 CExP02DetConstrReaderDetector construction reader using ROOT I/O
 CExP02DetectorConstructionDetector construction
 CExP02GeoTree
 CExP02PhysicsListPhysics list
 CExP02PrimaryGeneratorActionPrimary generator action
 CexrdmAnalysisManager
 CexrdmDetectorConstruction
 CexrdmDetectorMessenger
 CexrdmEnergyDeposition
 CexrdmEventAction
 CexrdmEventActionMessenger
 CexrdmHisto
 CexrdmHistoMessenger
 CexrdmMaterial
 CexrdmMaterialMessenger
 CexrdmPhysicsList
 CexrdmPhysicsListMessenger
 CexrdmPhysListHadron
 CexrdmPhysListParticles
 CexrdmPrimaryGeneratorAction
 CexrdmRunAction
 CexrdmSteppingAction
 CExTGActionInitialization
 CExTGDetectorConstructionDetector construction class using text geometry file
 CExTGDetectorConstructionWithCppDetector construction class using text geometry file and C++ code
 CExTGDetectorConstructionWithCutsDetector construction class using text geometry file using cuts per region
 CExTGDetectorConstructionWithSDDetector construction class using text geometry file and using a sensitive detector
 CExTGPhysicsList
 CExTGPrimaryGeneratorActionExample of primary generator action
 CExTGRCDetectorBuilder
 CExTGRCLineProcessor
 CExTGRCRegionCutsMgr
 CExTGRCRegionData
 CExTGRunActionDumps geometry in text format
 CExTGTrackerHitExample of hit
 CExTGTrackerSDExample of Sensitive detector
 CEzDetectorConstruction
 CF01ActionInitializationAction initialization class
 CF01CalorHit
 CF01CalorimeterSD
 CF01DetectorConstruction
 CF01DetectorMessenger
 CF01EventAction
 CF01EventActionMessenger
 CF01FieldMessenger
 CF01FieldSetup
 CF01PhysicsList
 CF01PhysicsListMessenger
 CF01PrimaryGeneratorAction
 CF01PrimaryGeneratorMessenger
 CF01RunAction
 CF01RunMessenger
 CF01StepCut
 CF01SteppingVerbose
 CF02ActionInitializationAction initialization class
 CF02CalorHit
 CF02CalorimeterSD
 CF02DetectorConstruction
 CF02DetectorMessenger
 CF02ElectricFieldSetup
 CF02EventAction
 CF02EventActionMessenger
 CF02FieldMessenger
 CF02PhysicsList
 CF02PhysicsListMessenger
 CF02PrimaryGeneratorAction
 CF02PrimaryGeneratorMessenger
 CF02RunAction
 CF02RunMessenger
 CF02StepCut
 CF02SteppingVerbose
 CF03ActionInitializationAction initialization class
 CF03CalorHit
 CF03CalorimeterSD
 CF03DetectorConstruction
 CF03DetectorMessenger
 CF03EventAction
 CF03EventActionMessenger
 CF03FieldMessenger
 CF03FieldSetup
 CF03PhysicsList
 CF03PhysicsListMessenger
 CF03PrimaryGeneratorAction
 CF03PrimaryGeneratorMessenger
 CF03RunAction
 CF03RunMessenger
 CF03StepCut
 CF03SteppingVerbose
 CF04ActionInitializationAction initialization class
 CF04DetectorConstruction
 CF04DetectorMessenger
 CF04ElementField
 CF04EventAction
 CF04EventActionMessenger
 CF04ExtraPhysics
 CF04FieldMessenger
 CF04FocusSolenoid
 CF04GlobalField
 CF04Materials
 CF04OpticalPhysics
 CF04PhysicsList
 CF04PhysicsListMessengerProvide control of the physics list and cut parameters
 CF04PrimaryGeneratorAction
 CF04PrimaryGeneratorMessenger
 CF04RunAction
 CF04RunActionMessenger
 CF04SimpleSolenoid
 CF04StackingAction
 CF04StepMax
 CF04SteppingAction
 CF04SteppingActionMessenger
 CF04SteppingVerbose
 CF04TrackingAction
 CF04Trajectory
 CF04TrajectoryPoint
 CF04UserTrackInformation
 CF05ActionInitializationAction initialization class
 CF05DetectorConstruction
 CF05ExtraPhysics
 CF05Field
 CF05PhysicsList
 CF05PrimaryGeneratorAction
 CF05SteppingAction
 CF05SteppingVerbose
 CF06ActionInitializationAction initialization class
 CF06DetectorConstruction
 CF06ExtraPhysics
 CF06PhysicsList
 CF06PrimaryGeneratorAction
 CFCALCalorHit
 CFCALCryostatVolumes
 CFCALEMModule
 CFCALEMModuleSD
 CFCALHadModule
 CFCALHadModuleSD
 CFCALMaterialConsultant
 CFCALPrimaryGeneratorAction
 CFCALRunAction
 CFCALRunActionMessenger
 CFCALSteppingAction
 CFCALSteppingVerbose
 CFCALTBEventAction
 CFCALTBEventActionMessenger
 CFCALTestbeamSetup
 CFCALTestbeamSetupSD
 CG01DetectorConstructionDetector construction allowing to use the geometry read from the GDML file
 CG01PhysicsListMinimal physics list just to demonstrate the use of GDML geometries
 CG01PrimaryGeneratorActionMinimal primary generator action to demonstrate the use of GDML geometries
 CG02ChamberParameterisationChamber parametrisation used in the GDML read/write example
 CG02DetectorConstructionDetector construction used in GDML read/write example
 CG02DetectorMessengerDetector messenger class used in GDML read/write example
 CG02PrimaryGeneratorActionPrimary generator action used in GDML read/write example
 CG02RunActionRun action used in GDML read/write example
 CG03ColorReaderGDML reader for the color attributes
 CG03ColorWriterGDML writer for the color attributes
 CG03DetectorConstructionDetector construction for the GDML extensions example
 CG03DetectorMessengerDetector messenger for the GDML extensions example
 CG03PrimaryGeneratorActionPrimary generator action for the GDML extension example
 CG03RunActionRun action for the GDML extension example
 CG04DetectorConstructionDetector construction for laoding GDML geometry
 CG04PhysicsListPhysics list for the GDML senstive detector example
 CG04PrimaryGeneratorActionPrimary generator action for GDML sensitive detector example
 CG04SensitiveDetectorSensitive detector to be attached to the GDML geometry
 CG3DetTable
 CG3DetTableEntry
 CG3Division
 CG3EleTable
 CG3MatTable
 CG3MatTableEntry
 CG3MedTable
 CG3MedTableEntry
 CG3PartTable
 CG3Pos
 CG3RotTable
 CG3RotTableEntry
 CG3toG4DetectorConstruction
 CG3toG4RotationMatrix
 CG3VolTable
 CG3VolTableEntry
 CG4Abla
 CG4AblaDataFile
 CG4AblaFission
 CG4AblaFissionBase
 CG4AblaInterface
 CG4AblaVirtualData
 CG4Absorber
 CG4AdjointAlongStepWeightCorrection
 CG4AdjointAlpha
 CG4AdjointBremsstrahlungModel
 CG4AdjointComptonModel
 CG4AdjointCrossSurfChecker
 CG4AdjointCSManager
 CG4AdjointCSMatrix
 CG4AdjointDeuteron
 CG4AdjointeIonisationModel
 CG4AdjointElectron
 CG4AdjointGamma
 CG4AdjointGenericIon
 CG4AdjointHe3
 CG4AdjointhIonisationModel
 CG4AdjointhMultipleScattering
 CG4AdjointInterpolator
 CG4AdjointIonIonisationModel
 CG4AdjointIons
 CG4AdjointPhotoElectricModel
 CG4AdjointPhysicsList
 CG4AdjointPhysicsMessenger
 CG4AdjointPositron
 CG4AdjointPosOnPhysVolGenerator
 CG4AdjointPrimaryGenerator
 CG4AdjointPrimaryGeneratorAction
 CG4AdjointProcessEquivalentToDirectProcess
 CG4AdjointProton
 CG4AdjointSimManager
 CG4AdjointSimMessenger
 CG4AdjointStackingAction
 CG4AdjointSteppingAction
 CG4AdjointTrackingAction
 CG4AdjointTriton
 CG4AffineTransform
 CG4Ald
 CG4AllITManager
 CG4Allocator
 CG4AllocatorBase
 CG4AllocatorList
 CG4AllocatorPool
 CG4AllocStats
 CG4Alpha
 CG4AlphaCoulombBarrier
 CG4AlphaDecayChannel
 CG4AlphaEvaporationChannel
 CG4AlphaEvaporationProbability
 CG4AlphaGEMChannel
 CG4AlphaGEMCoulombBarrier
 CG4AlphaGEMProbability
 CG4AlphaInelasticProcess
 CG4alphaIonisation
 CG4Analyser
 CG4AnalysisManagerState
 CG4AnalysisMessenger
 CG4AnalysisVerbose
 CG4AnalyticalPolSolver
 CG4AngleDirect
 CG4AngularDistribution
 CG4AngularDistributionNP
 CG4AngularDistributionPP
 CG4AnnihilationCrossSection
 CG4AnnihiToMuPair
 CG4AntiAlpha
 CG4AntiAlphaInelasticProcess
 CG4AntiBarionBuilder
 CG4AntiBMesonZero
 CG4AntiBsMesonZero
 CG4AntiDeuteron
 CG4AntiDeuteronInelasticProcess
 CG4AntiDMesonZero
 CG4AntiHe3
 CG4AntiHe3InelasticProcess
 CG4AntiKaonZero
 CG4AntiLambda
 CG4AntiLambdab
 CG4AntiLambdacPlus
 CG4AntiLambdaInelasticProcess
 CG4AntiNeutrinoE
 CG4AntiNeutrinoMu
 CG4AntiNeutrinoTau
 CG4AntiNeutron
 CG4AntiNeutronAnnihilationAtRest
 CG4AntiNeutronInelasticProcess
 CG4AntiNuclElastic
 CG4AntiOmegabMinus
 CG4AntiOmegacZero
 CG4AntiOmegaMinus
 CG4AntiOmegaMinusInelasticProcess
 CG4AntiProton
 CG4AntiProtonAbsorptionFritiof
 CG4AntiProtonField
 CG4AntiProtonInelasticProcess
 CG4AntiSigmabMinus
 CG4AntiSigmabPlus
 CG4AntiSigmabZero
 CG4AntiSigmacPlus
 CG4AntiSigmacPlusPlus
 CG4AntiSigmacZero
 CG4AntiSigmaMinus
 CG4AntiSigmaMinusInelasticProcess
 CG4AntiSigmaPlus
 CG4AntiSigmaPlusAbsorptionFritiof
 CG4AntiSigmaPlusInelasticProcess
 CG4AntiSigmaZero
 CG4AntiTriton
 CG4AntiTritonInelasticProcess
 CG4AntiXibMinus
 CG4AntiXibZero
 CG4AntiXicPlus
 CG4AntiXicZero
 CG4AntiXiMinus
 CG4AntiXiMinusInelasticProcess
 CG4AntiXiZero
 CG4AntiXiZeroInelasticProcess
 CG4AnyMethod
 CG4AnyType
 CG4ArrowModel
 CG4ASCCrossSection
 CG4ASCIITree
 CG4ASCIITreeMessenger
 CG4ASCIITreeSceneHandler
 CG4ASCIITreeViewer
 CG4AssemblyTriplet
 CG4AssemblyVolume
 CG4ASTARStopping
 CG4AtomicDeexcitation
 CG4AtomicShell
 CG4AtomicShells
 CG4AtomicTransitionManager
 CG4AttCheck
 CG4AttDef
 CG4AttDefT
 CG4AttHolder
 CG4AttributeFilterT
 CG4AttValue
 CG4AttValueFilterT
 CG4AugerData
 CG4AugerTransition
 CG4AuxiliaryNavServices
 CG4AxesModel
 CG4B10GEMChannel
 CG4B10GEMCoulombBarrier
 CG4B10GEMProbability
 CG4B11GEMChannel
 CG4B11GEMCoulombBarrier
 CG4B11GEMProbability
 CG4B12GEMChannel
 CG4B12GEMCoulombBarrier
 CG4B12GEMProbability
 CG4B13GEMChannel
 CG4B13GEMCoulombBarrier
 CG4B13GEMProbability
 CG4B8GEMChannel
 CG4B8GEMCoulombBarrier
 CG4B8GEMProbability
 CG4B9FermiFragment
 CG4BadAnyCast
 CG4BadArgument
 CG4BaryonConstructor
 CG4BaryonPartialWidth
 CG4BaryonSplitter
 CG4BaryonWidth
 CG4BaseAnalysisManager
 CG4BasePhantomBuilder
 CG4BCAction
 CG4BCDecay
 CG4BCLateParticle
 CG4BcMesonMinus
 CG4BcMesonPlus
 CG4Be10GEMChannel
 CG4Be10GEMCoulombBarrier
 CG4Be10GEMProbability
 CG4Be11GEMChannel
 CG4Be11GEMCoulombBarrier
 CG4Be11GEMProbability
 CG4Be12GEMChannel
 CG4Be12GEMCoulombBarrier
 CG4Be12GEMProbability
 CG4Be7GEMChannel
 CG4Be7GEMCoulombBarrier
 CG4Be7GEMProbability
 CG4Be8FermiFragment
 CG4Be9GEMChannel
 CG4Be9GEMCoulombBarrier
 CG4Be9GEMProbability
 CG4BertiniElectroNuclearBuilder
 CG4BertiniKaonBuilder
 CG4BertiniNeutronBuilder
 CG4BertiniPiKBuilder
 CG4BertiniPionBuilder
 CG4BertiniProtonBuilder
 CG4Bessel
 CG4BestUnit
 CG4BetaDecayCorrections
 CG4BetaFermiFunction
 CG4BetaMinusDecayChannel
 CG4BetaPlusDecayChannel
 CG4BetheBlochIonGasModel
 CG4BetheBlochModel
 CG4BetheBlochNoDeltaModel
 CG4BetheHeitlerModel
 CG4BGGNucleonElasticXS
 CG4BGGNucleonInelasticXS
 CG4BGGPionElasticXS
 CG4BGGPionInelasticXS
 CG4BiasingHelper
 CG4BiasingOperationManager
 CG4BiasingProcessInterface
 CG4BiasingTrackData
 CG4BiasingTrackDataStore
 CG4BigBanger
 CG4BinaryCascade
 CG4BinaryLightIonReaction
 CG4BinaryNeutronBuilder
 CG4BinaryPiKBuilder
 CG4BinaryPionBuilder
 CG4BinaryProtonBuilder
 CG4BlineEquation
 CG4BlineEventAction
 CG4BlinePrimaryGeneratorAction
 CG4BlineSteppingAction
 CG4BlineTracer
 CG4BlineTracerMessenger
 CG4BlockingList
 CG4BMesonMinus
 CG4BMesonPlus
 CG4BMesonZero
 CG4BohrFluctuations
 CG4BoldyshevTripletModel
 CG4BooleanSolid
 CG4BOptnChangeCrossSection
 CG4BOptnCloning
 CG4BOptnForceCommonTruncatedExp
 CG4BOptnForceFreeFlight
 CG4BOptrForceCollision
 CG4BosonConstructor
 CG4BoundingSphereScene
 CG4Box
 CG4BraggIonGasModel
 CG4BraggIonModel
 CG4BraggModel
 CG4BraggNoDeltaModel
 CG4BremsstrahlungCrossSectionHandler
 CG4BremsstrahlungParameters
 CG4BrentLocator
 CG4BsMesonZero
 CG4BufferError
 CG4C10GEMChannel
 CG4C10GEMCoulombBarrier
 CG4C10GEMProbability
 CG4C11GEMChannel
 CG4C11GEMCoulombBarrier
 CG4C11GEMProbability
 CG4C12GEMChannel
 CG4C12GEMCoulombBarrier
 CG4C12GEMProbability
 CG4C13GEMChannel
 CG4C13GEMCoulombBarrier
 CG4C13GEMProbability
 CG4C14GEMChannel
 CG4C14GEMCoulombBarrier
 CG4C14GEMProbability
 CG4C15GEMChannel
 CG4C15GEMCoulombBarrier
 CG4C15GEMProbability
 CG4C16GEMChannel
 CG4C16GEMCoulombBarrier
 CG4C16GEMProbability
 CG4Cache
 CG4CachedMagneticField
 CG4CacheReference
 CG4CacheReference< G4double >
 CG4CacheReference< VALTYPE * >
 CG4CallbackModel
 CG4CameronGilbertPairingCorrections
 CG4CameronGilbertShellCorrections
 CG4CameronShellPlusPairingCorrections
 CG4CameronTruranHilfPairingCorrections
 CG4CameronTruranHilfShellCorrections
 CG4CascadeChannel
 CG4CascadeChannelTables
 CG4CascadeCheckBalance
 CG4CascadeCoalescence
 CG4CascadeColliderBase
 CG4CascadeData
 CG4CascadeDeexcitation
 CG4CascadeDeexciteBase
 CG4CascadeFinalStateAlgorithm
 CG4CascadeFinalStateGenerator
 CG4CascadeFunctions
 CG4CascadeGamNChannelData
 CG4CascadeGamPChannelData
 CG4CascadeHistory
 CG4CascadeInterface
 CG4CascadeInterpolator
 CG4CascadeKminusNChannelData
 CG4CascadeKminusPChannelData
 CG4CascadeKplusNChannelData
 CG4CascadeKplusPChannelData
 CG4CascadeKzeroBarNChannelData
 CG4CascadeKzeroBarPChannelData
 CG4CascadeKzeroNChannelData
 CG4CascadeKzeroPChannelData
 CG4CascadeLambdaNChannelData
 CG4CascadeLambdaPChannelData
 CG4CascadeMuMinusPChannelData
 CG4CascadeNNChannel
 CG4CascadeNNChannelData
 CG4CascadeNPChannel
 CG4CascadeNPChannelData
 CG4CascadeOmegaMinusNChannelData
 CG4CascadeOmegaMinusPChannelData
 CG4CascadeParameters
 CG4CascadeParamMessenger
 CG4CascadePiMinusNChannelData
 CG4CascadePiMinusPChannelData
 CG4CascadePiPlusNChannelData
 CG4CascadePiPlusPChannelData
 CG4CascadePiZeroNChannelData
 CG4CascadePiZeroPChannelData
 CG4CascadePPChannel
 CG4CascadePPChannelData
 CG4CascadeRecoilMaker
 CG4CascadeSampler
 CG4CascadeSigmaMinusNChannelData
 CG4CascadeSigmaMinusPChannelData
 CG4CascadeSigmaPlusNChannelData
 CG4CascadeSigmaPlusPChannelData
 CG4CascadeSigmaZeroNChannelData
 CG4CascadeSigmaZeroPChannelData
 CG4CascadeXiMinusNChannelData
 CG4CascadeXiMinusPChannelData
 CG4CascadeXiZeroNChannelData
 CG4CascadeXiZeroPChannelData
 CG4CascadParticle
 CG4CashKarpRKF45
 CG4CellScoreComposer
 CG4CellScoreValues
 CG4Cerenkov
 CG4CerrToFile
 CG4ChargedGeantino
 CG4ChargeExchange
 CG4ChargeExchangePhysics
 CG4ChargeExchangeProcess
 CG4ChargeState
 CG4ChebyshevApproximation
 CG4ChipsAntiBaryonElasticXS
 CG4ChipsAntiBaryonInelasticXS
 CG4ChipsComponentXS
 CG4ChipsElasticModel
 CG4ChipsHyperonElasticXS
 CG4ChipsHyperonInelasticXS
 CG4ChipsKaonMinusElasticXS
 CG4ChipsKaonMinusInelasticXS
 CG4ChipsKaonPlusElasticXS
 CG4ChipsKaonPlusInelasticXS
 CG4ChipsKaonZeroElasticXS
 CG4ChipsKaonZeroInelasticXS
 CG4ChipsNeutronElasticXS
 CG4ChipsNeutronInelasticXS
 CG4ChipsPionMinusElasticXS
 CG4ChipsPionMinusInelasticXS
 CG4ChipsPionPlusElasticXS
 CG4ChipsPionPlusInelasticXS
 CG4ChipsProtonElasticXS
 CG4ChipsProtonInelasticXS
 CG4ChordFinder
 CG4ChordFinderSaf
 CG4ChunkIndexType
 CG4ChunkType
 CG4Circle
 CG4ClassicalRK4
 CG4Clebsch
 CG4ClippablePolygon
 CG4CollectionNameVector
 CG4CollisionComposite
 CG4CollisionInitialState
 CG4CollisionManager
 CG4CollisionMesonBaryon
 CG4CollisionMesonBaryonElastic
 CG4CollisionMesonBaryonToResonance
 CG4CollisionNN
 CG4CollisionNNElastic
 CG4CollisionNNToDeltaDelta
 CG4CollisionNNToDeltaDelta1600
 CG4CollisionNNToDeltaDelta1620
 CG4CollisionNNToDeltaDelta1700
 CG4CollisionNNToDeltaDelta1900
 CG4CollisionNNToDeltaDelta1905
 CG4CollisionNNToDeltaDelta1910
 CG4CollisionNNToDeltaDelta1920
 CG4CollisionNNToDeltaDelta1930
 CG4CollisionNNToDeltaDelta1950
 CG4CollisionNNToDeltaDeltastar
 CG4CollisionNNToDeltaNstar
 CG4CollisionNNToNDelta
 CG4CollisionNNToNDelta1600
 CG4CollisionNNToNDelta1620
 CG4CollisionNNToNDelta1700
 CG4CollisionNNToNDelta1900
 CG4CollisionNNToNDelta1905
 CG4CollisionNNToNDelta1910
 CG4CollisionNNToNDelta1920
 CG4CollisionNNToNDelta1930
 CG4CollisionNNToNDelta1950
 CG4CollisionNNToNDeltastar
 CG4CollisionNNToNNstar
 CG4CollisionnpElastic
 CG4CollisionNStarNToNN
 CG4CollisionOutput
 CG4CollisionPN
 CG4Colour
 CG4CompetitiveFission
 CG4ComponentAntiNuclNuclearXS
 CG4ComponentBarNucleonNucleusXsc
 CG4ComponentGGHadronNucleusXsc
 CG4ComponentGGNuclNuclXsc
 CG4ComponentSAIDTotalXS
 CG4CompositeDataSet
 CG4CompositeEMDataSet
 CG4ComptonScattering
 CG4ConcreteMesonBaryonToResonance
 CG4ConcreteNNToDeltaDelta
 CG4ConcreteNNToDeltaDeltastar
 CG4ConcreteNNToDeltaNstar
 CG4ConcreteNNToNDelta
 CG4ConcreteNNToNDeltaStar
 CG4ConcreteNNToNNStar
 CG4ConcreteNNTwoBodyResonance
 CG4ConcreteNStarNToNN
 CG4Cons
 CG4ConstantLevelDensityParameter
 CG4ConstRK4
 CG4ContinuousGainOfEnergy
 CG4ContinuumGammaDeexcitation
 CG4ContinuumGammaTransition
 CG4ConvergenceTester
 CG4ConversionFatalError
 CG4CookPairingCorrections
 CG4CookShellCorrections
 CG4CoulombBarrier
 CG4CoulombKinematicsInfo
 CG4CoulombScattering
 CG4CountedObject
 CG4CoupledTransportation
 CG4coutDestination
 CG4CoutToFile
 CG4CreatorFactoryT
 CG4CrossSectionBuffer
 CG4CrossSectionComposite
 CG4CrossSectionDataSet
 CG4CrossSectionDataSetRegistry
 CG4CrossSectionDataStore
 CG4CrossSectionElastic
 CG4CrossSectionFactory
 CG4CrossSectionFactory< T, 0 >
 CG4CrossSectionFactory< T, 1 >
 CG4CrossSectionFactory< T, 2 >
 CG4CrossSectionFactoryRegistry
 CG4CrossSectionHandler
 CG4CrossSectionInelastic
 CG4CrossSectionPairGG
 CG4CrossSectionPatch
 CG4CrossSectionSourcePtr
 CG4CSGSolid
 CG4CsvAnalysisManager
 CG4CsvFileManager
 CG4CsvNtupleDescription
 CG4CsvNtupleManager
 CG4CustomFemaleBuilder
 CG4CutTubs
 CG4DalitzDecayChannel
 CG4DataFormatError
 CG4DataInterpolation
 CG4DataQuestionaire
 CG4DataSet
 CG4DataVector
 CG4DAWNFILE
 CG4DAWNFILESceneHandler
 CG4DAWNFILEViewer
 CG4DCIOcatalog
 CG4DCIOentryT
 CG4DCofThisEvent
 CG4DCtable
 CG4Decay
 CG4DecayKineticTracks
 CG4DecayPhysics
 CG4DecayProducts
 CG4DecayStrongResonances
 CG4DecayTable
 CG4DecayTableMessenger
 CG4DecayWithSpin
 CG4DefaultLinearColorMap
 CG4Delete
 CG4DELPHIMagField
 CG4DeltaAngle
 CG4DeltaAngleFreeScat
 CG4DeltaDeltastarBuilder
 CG4DeltaNstarBuilder
 CG4DensityEffectData
 CG4DetailedBalancePhaseSpaceIntegral
 CG4Deuteron
 CG4DeuteronCoulombBarrier
 CG4DeuteronEvaporationChannel
 CG4DeuteronEvaporationProbability
 CG4DeuteronGEMChannel
 CG4DeuteronGEMCoulombBarrier
 CG4DeuteronGEMProbability
 CG4DeuteronInelasticProcess
 CG4DiffractiveExcitation
 CG4DiffractiveHHScatterer
 CG4DiffractiveSplitableHadron
 CG4DiffractiveStringBuilder
 CG4DiffuseElastic
 CG4DigiAttributeFilterFactory
 CG4DigiCollection
 CG4DigiManager
 CG4DigiModel
 CG4DimensionedType
 CG4Dineutron
 CG4DipBustGenerator
 CG4Diproton
 CG4DiQuarks
 CG4DiscreteGammaDeexcitation
 CG4DiscreteGammaTransition
 CG4DisplacedSolid
 CG4DMesonMinus
 CG4DMesonPlus
 CG4DMesonZero
 CG4DMmessenger
 CG4DNAAttachment
 CG4DNABornExcitationModel
 CG4DNABornIonisationModel
 CG4DNABrownianTransportation
 CG4DNAChampionElasticModel
 CG4DNAChargeDecrease
 CG4DNAChargeIncrease
 CG4DNAChemistryManager
 CG4DNACrossSectionDataSet
 CG4DNADamages
 CG4DNADingfelderChargeDecreaseModel
 CG4DNADingfelderChargeIncreaseModel
 CG4DNAElastic
 CG4DNAElectronSolvatation
 CG4DNAEmfietzoglouExcitationModel
 CG4DNAExcitation
 CG4DNAGenericIonsManager
 CG4DNAIndirectHit
 CG4DNAIonisation
 CG4DNAIons
 CG4DNAMeltonAttachmentModel
 CG4DNAMillerGreenExcitationModel
 CG4DNAMolecularDissociation
 CG4DNAMolecularMaterial
 CG4DNAMolecularReaction
 CG4DNAMolecularReactionData
 CG4DNAMolecularReactionTable
 CG4DNAMolecularStepByStepModel
 CG4DNAMoleculeEncounterStepper
 CG4DNAOneStepSolvatationModel
 CG4DNARuddIonisationExtendedModel
 CG4DNARuddIonisationModel
 CG4DNASancheExcitationModel
 CG4DNAScreenedRutherfordElasticModel
 CG4DNASecondOrderReaction
 CG4DNASmoluchowskiReactionModel
 CG4DNATransformElectronModel
 CG4DNAVibExcitation
 CG4DNAWaterDissociationDisplacer
 CG4DNAWaterExcitationStructure
 CG4DNAWaterIonisationStructure
 CG4DopplerProfile
 CG4DPMJET2_5CrossSection
 CG4DPMJET2_5CrossSectionParamSet
 CG4DPMJET2_5Model
 CG4DrawVoxels
 CG4DsMesonMinus
 CG4DsMesonPlus
 CG4DummyModel
 CG4DynamicParticle
 CG4E1Probability
 CG4E1SingleProbability1
 CG4eBremParametrizedModel
 CG4eBremsstrahlung
 CG4eBremsstrahlungRelModel
 CG4eBremsstrahlungSpectrum
 CG4Ec2sub
 CG4Ecld
 CG4eCoulombScatteringModel
 CG4ecpssrBaseKxsModel
 CG4ecpssrBaseLixsModel
 CG4ecpssrFormFactorKxsModel
 CG4ecpssrFormFactorLixsModel
 CG4ecpssrFormFactorMixsModel
 CG4eCrossSectionHandler
 CG4ee2KChargedModel
 CG4ee2KNeutralModel
 CG4eeCrossSections
 CG4Eenuc
 CG4eeTo3PiModel
 CG4eeToHadrons
 CG4eeToHadronsModel
 CG4eeToHadronsMultiModel
 CG4eeToPGammaModel
 CG4eeToTwoGammaModel
 CG4eeToTwoPiModel
 CG4eInverseBremsstrahlung
 CG4eInverseCompton
 CG4eInverseIonisation
 CG4eIonisation
 CG4eIonisationCrossSectionHandler
 CG4eIonisationParameters
 CG4eIonisationSpectrum
 CG4ElasticData
 CG4ElasticHadrNucleusHE
 CG4ElasticHNScattering
 CG4ElectricField
 CG4ElectroMagneticField
 CG4Electron
 CG4Electron_aq
 CG4ElectronCapture
 CG4ElectronIonPair
 CG4ElectronNuclearProcess
 CG4ElectronOccupancy
 CG4ElectroNuclearCrossSection
 CG4ElectroVDNuclearModel
 CG4Element
 CG4ElementaryParticleCollider
 CG4ElementData
 CG4ElementSelector
 CG4Ellipsoid
 CG4EllipticalCone
 CG4EllipticalTube
 CG4eLowEnergyLoss
 CG4EmBiasingManager
 CG4EmCalculator
 CG4EmCaptureCascade
 CG4EmConfigurator
 CG4EmCorrections
 CG4EMDataSet
 CG4EMDissociation
 CG4EMDissociationCrossSection
 CG4EMDissociationSpectrum
 CG4EmDNAPhysics
 CG4EmElementSelector
 CG4EmExtraPhysics
 CG4EmLivermorePhysics
 CG4EmLivermorePolarizedPhysics
 CG4EmLowEPPhysics
 CG4EmManager
 CG4EmManagerMessenger
 CG4EmMessenger
 CG4EmModelManager
 CG4EmMultiModel
 CG4empCrossSection
 CG4EmPenelopePhysics
 CG4EmProcessOptions
 CG4EmSaturation
 CG4EmStandardPhysics
 CG4EmStandardPhysics_option1
 CG4EmStandardPhysics_option2
 CG4EmStandardPhysics_option3
 CG4EmStandardPhysics_option4
 CG4eMultipleScattering
 CG4EmUserPhysics
 CG4EnclosingCylinder
 CG4ENDFTapeRead
 CG4ENDFYieldDataContainer
 CG4EnergyLossForExtrapolator
 CG4EnergyLossMessenger
 CG4EnergyLossTables
 CG4EnergyLossTablesHelper
 CG4EnergyRangeManager
 CG4EnergySplitter
 CG4EnhancedVecAllocator
 CG4eplusAnnihilation
 CG4eplusPolarizedAnnihilation
 CG4ePolarizedBremsstrahlung
 CG4ePolarizedBremsstrahlungModel
 CG4ePolarizedIonisation
 CG4EqEMFieldWithEDM
 CG4EqEMFieldWithSpin
 CG4EqGravityField
 CG4EqMagElectricField
 CG4EquationOfMotion
 CG4EquilibriumEvaporator
 CG4ErrorCylSurfaceTarget
 CG4ErrorEnergyLoss
 CG4ErrorFreeTrajParam
 CG4ErrorFreeTrajState
 CG4ErrorGeomVolumeTarget
 CG4ErrorMag_UsualEqRhs
 CG4ErrorMagFieldLimitProcess
 CG4ErrorMatrix
 CG4ErrorMessenger
 CG4ErrorPhysicsList
 CG4ErrorPlaneSurfaceTarget
 CG4ErrorPropagationNavigator
 CG4ErrorPropagator
 CG4ErrorPropagatorData
 CG4ErrorPropagatorManager
 CG4ErrorRunManagerHelper
 CG4ErrorStepLengthLimitProcess
 CG4ErrorSurfaceTarget
 CG4ErrorSurfaceTrajParam
 CG4ErrorSurfaceTrajState
 CG4ErrorSymMatrix
 CG4ErrorTanPlaneTarget
 CG4ErrorTarget
 CG4ErrorTrackLengthTarget
 CG4ErrorTrajState
 CG4eSingleCoulombScatteringModel
 CG4ESTARStopping
 CG4Eta
 CG4Etac
 CG4EtaPrime
 CG4Evaporation
 CG4EvaporationChannel
 CG4EvaporationDefaultGEMFactory
 CG4EvaporationFactory
 CG4EvaporationGEMFactory
 CG4EvaporationInuclCollider
 CG4EvaporationLevelDensityParameter
 CG4EvaporationProbability
 CG4Event
 CG4EventGenerator
 CG4EventManager
 CG4EvManMessenger
 CG4ExactHelixStepper
 CG4ExceptionHandler
 CG4ExcitationHandler
 CG4ExcitedBaryonConstructor
 CG4ExcitedBaryons
 CG4ExcitedDeltaConstructor
 CG4ExcitedLambdaConstructor
 CG4ExcitedMesonConstructor
 CG4ExcitedMesons
 CG4ExcitedNucleonConstructor
 CG4ExcitedSigmaConstructor
 CG4ExcitedString
 CG4ExcitedStringDecay
 CG4ExcitedXiConstructor
 CG4ExitNormal
 CG4ExitonConfiguration
 CG4ExplicitEuler
 CG4ExtDEDXTable
 CG4ExtrudedSolid
 CG4EzVolume
 CG4EzVoxelParameterization
 CG4EzWorld
 CG4F17GEMChannel
 CG4F17GEMCoulombBarrier
 CG4F17GEMProbability
 CG4F18GEMChannel
 CG4F18GEMCoulombBarrier
 CG4F18GEMProbability
 CG4F19GEMChannel
 CG4F19GEMCoulombBarrier
 CG4F19GEMProbability
 CG4F20GEMChannel
 CG4F20GEMCoulombBarrier
 CG4F20GEMProbability
 CG4F21GEMChannel
 CG4F21GEMCoulombBarrier
 CG4F21GEMProbability
 CG4Facet
 CG4Fancy3DNucleus
 CG4Fancy3DNucleusHelper
 CG4FastSimulationManager
 CG4FastSimulationManagerProcess
 CG4FastSimulationMessenger
 CG4FastSimulationVector
 CG4FastStep
 CG4FastTrack
 CG4FastVector
 CG4Fb
 CG4FemaleBuilder
 CG4FermiBreakUp
 CG4FermiConfiguration
 CG4FermiConfigurationList
 CG4FermiFragmentsPool
 CG4FermiMomentum
 CG4FermiPhaseSpaceDecay
 CG4Field
 CG4FieldManager
 CG4FieldManagerStore
 CG4FieldPropagation
 CG4FieldTrack
 CG4FieldTrackUpdator
 CG4FileMessenger
 CG4FileUtilities
 CG4Fiss
 CG4FissionBarrier
 CG4FissionConfiguration
 CG4Fissioner
 CG4fissionEvent
 CG4FissionFragmentGenerator
 CG4FissionLevelDensityParameter
 CG4FissionLibrary
 CG4FissionParameters
 CG4FissionProbability
 CG4FissionProductYieldDist
 CG4FissionStore
 CG4FissLib
 CG4FluoData
 CG4FluoTransition
 CG4ForEach
 CG4ForEach< G4Terminator >
 CG4ForwardXrayTR
 CG4FPYBiasedLightFragmentDist
 CG4FPYNormalFragmentDist
 CG4FPYSamplingOps
 CG4Fragment
 CG4FragmentingString
 CG4FRofstream
 CG4FTFAnnihilation
 CG4FTFBinaryKaonBuilder
 CG4FTFBinaryNeutronBuilder
 CG4FTFBinaryPiKBuilder
 CG4FTFBinaryPionBuilder
 CG4FTFBinaryProtonBuilder
 CG4FTFBuilder
 CG4FTFModel
 CG4FTFPAntiBarionBuilder
 CG4FTFParameters
 CG4FTFParticipants
 CG4FTFPKaonBuilder
 CG4FTFPNeutronBuilder
 CG4FTFPPiKBuilder
 CG4FTFPPionBuilder
 CG4FTFPProtonBuilder
 CG4FullGlaubAADataSet
 CG4Gamma
 CG4GammaAnnCrossSection
 CG4GammaConversion
 CG4GammaConversionToMuons
 CG4GammaNuclAngDst
 CG4GammaParticipants
 CG4GammaXTRadiator
 CG4GamP2NPipAngDst
 CG4GamP2PPi0AngDst
 CG4GaussChebyshevQ
 CG4GaussHermiteQ
 CG4GaussJacobiQ
 CG4GaussLaguerreQ
 CG4GaussLegendreQ
 CG4GDecay3
 CG4GDMLAuxPairType
 CG4GDMLErrorHandler
 CG4GDMLEvaluator
 CG4GDMLMatrix
 CG4GDMLMessenger
 CG4GDMLParameterisation
 CG4GDMLParser
 CG4GDMLRead
 CG4GDMLReadDefine
 CG4GDMLReadMaterials
 CG4GDMLReadParamvol
 CG4GDMLReadSetup
 CG4GDMLReadSolids
 CG4GDMLReadStructure
 CG4GDMLWrite
 CG4GDMLWriteDefine
 CG4GDMLWriteMaterials
 CG4GDMLWriteParamvol
 CG4GDMLWriteSetup
 CG4GDMLWriteSolids
 CG4GDMLWriteStructure
 CG4Geantino
 CG4GEMChannel
 CG4GEMCoulombBarrier
 CG4GEMCoulombBarrierHE
 CG4GEMProbability
 CG4GeneralNNCollision
 CG4GeneralParticleSource
 CG4GeneralParticleSourceMessenger
 CG4GeneralPhaseSpaceDecay
 CG4GeneralSpaceNNCrossSection
 CG4Generator2BN
 CG4Generator2BS
 CG4GeneratorPrecompoundInterface
 CG4GenericBiasingPhysics
 CG4GenericIon
 CG4GenericMessengerThis class is generic messenger
 CG4GenericPolycone
 CG4GenericTrap
 CG4GeometryCell
 CG4GeometryCellComp
 CG4GeometryCellStep
 CG4GeometryManager
 CG4GeometryMessenger
 CG4GeometrySampler
 CG4GeometryTolerance
 CG4GeometryWorkspace
 CG4GeometryWorkspacePool
 CG4GeomSplitter
 CG4GeomTestVolPoint
 CG4GeomTestVolume
 CG4GFlashSpot
 CG4GGNuclNuclCrossSection
 CG4GHEKinematicsVector
 CG4GIDI
 CG4GIDI_map
 CG4GIDI_Product_s
 CG4GIDI_target
 CG4GlaubAADataSet
 CG4GlaubAADataSetHandler
 CG4GlauberGribovCrossSection
 CG4GlobalFastSimulationManager
 CG4GlobalMagFieldMessenger
 CG4Gluons
 CG4GMocrenFile
 CG4GMocrenFileCTtoDensityMap
 CG4GMocrenFileSceneHandler
 CG4GMocrenFileViewer
 CG4GMocrenIO
 CG4GMocrenMessenger
 CG4GMocrenTouchable
 CG4GNASHTransitions
 CG4GoudsmitSaundersonMscModel
 CG4GoudsmitSaundersonTable
 CG4GraphicsSystemList
 CG4GRSSolid
 CG4GRSVolume
 CG4H1DummyManager
 CG4H1Messenger
 CG4H1ToolsManager
 CG4H2
 CG4H2DummyManager
 CG4H2Messenger
 CG4H2O
 CG4H2O2
 CG4H2ToolsManager
 CG4H3O
 CG4HadDecayGenerator
 CG4HadFinalState
 CG4HadLeadBias
 CG4HadNElastic1AngDst
 CG4HadNElastic2AngDst
 CG4HadNucl3BodyAngDst
 CG4HadNucl3BodyMomDst
 CG4HadNucl4BodyMomDst
 CG4HadPhaseSpaceGenbod
 CG4HadPhaseSpaceKopylov
 CG4HadPhaseSpaceNBodyAsai
 CG4HadProjectile
 CG4HadReentrentException
 CG4HadronBuilder
 CG4HadronCaptureDataSet
 CG4HadronCaptureProcess
 CG4HadronCrossSections
 CG4HadronDElasticPhysics
 CG4HadronElastic
 CG4HadronElasticDataSet
 CG4HadronElasticPhysics
 CG4HadronElasticPhysicsHP
 CG4HadronElasticPhysicsLEND
 CG4HadronElasticPhysicsXS
 CG4HadronElasticProcess
 CG4HadronFissionDataSet
 CG4HadronFissionProcess
 CG4HadronHElasticPhysics
 CG4HadronicAbsorptionBertini
 CG4HadronicAbsorptionFritiof
 CG4HadronicEPTestMessenger
 CG4HadronicException
 CG4HadronicInteraction
 CG4HadronicInteractionRegistry
 CG4HadronicInteractionWrapper
 CG4HadronicProcess
 CG4HadronicProcessStore
 CG4HadronicWhiteBoard
 CG4HadronInelasticDataSet
 CG4HadronInelasticProcess
 CG4HadronInelasticQBBC
 CG4HadronNucleonXsc
 CG4HadronPhysicsFTF_BIC
 CG4HadronPhysicsFTFP_BERT
 CG4HadronPhysicsFTFP_BERT_HP
 CG4HadronPhysicsFTFP_BERT_TRV
 CG4HadronPhysicsINCLXX
 CG4HadronPhysicsQGS_BIC
 CG4HadronPhysicsQGSP_BERT
 CG4HadronPhysicsQGSP_BERT_HP
 CG4HadronPhysicsQGSP_BIC
 CG4HadronPhysicsQGSP_BIC_HP
 CG4HadronPhysicsQGSP_FTFP_BERT
 CG4HadronPhysicsShielding
 CG4HadronStoppingProcess
 CG4HadSecondary
 CG4HadSignalHandler
 CG4HarmonicPolMagField
 CG4hBetheBlochModel
 CG4hBremsstrahlung
 CG4hBremsstrahlungModel
 CG4HCIOcatalog
 CG4HCIOentryT
 CG4HCofThisEvent
 CG4hCoulombScatteringModel
 CG4HCtable
 CG4He3
 CG4He3CoulombBarrier
 CG4He3EvaporationChannel
 CG4He3EvaporationProbability
 CG4He3GEMChannel
 CG4He3GEMCoulombBarrier
 CG4He3GEMProbability
 CG4He5FermiFragment
 CG4He6GEMChannel
 CG4He6GEMCoulombBarrier
 CG4He6GEMProbability
 CG4He8GEMChannel
 CG4He8GEMCoulombBarrier
 CG4He8GEMProbability
 CG4HeatedKleinNishinaCompton
 CG4HelixExplicitEuler
 CG4HelixHeum
 CG4HelixImplicitEuler
 CG4HelixMixedStepper
 CG4HelixSimpleRunge
 CG4HEPEvtInterface
 CG4HEPEvtParticle
 CG4HepRep
 CG4HepRepFile
 CG4HepRepFileSceneHandler
 CG4HepRepFileViewer
 CG4HepRepFileXMLWriter
 CG4HepRepMessenger
 CG4HepRepSceneHandler
 CG4HepRepViewer
 CG4HETCAlpha
 CG4HETCChargedFragment
 CG4HETCDeuteron
 CG4HETCEmissionFactory
 CG4HETCFragment
 CG4HETCHe3
 CG4HETCNeutron
 CG4HETCProton
 CG4HETCTriton
 CG4hhIonisation
 CG4hICRU49He
 CG4hICRU49Nuclear
 CG4hICRU49p
 CG4HIJING_Model
 CG4hImpactIonisation
 CG4hInverseIonisation
 CG4hIonEffChargeSquare
 CG4hIonisation
 CG4HitAttributeFilterFactory
 CG4HitsCollection
 CG4HitsModel
 CG4hMultipleScattering
 CG4HnInformation
 CG4HnManager
 CG4HnMessenger
 CG4hNuclearStoppingModel
 CG4hPairProduction
 CG4hPairProductionModel
 CG4hParametrisedLossModel
 CG4hRDEnergyLoss
 CG4hSRIM2000p
 CG4HtmlPPReporter
 CG4HuffmanCodeTable
 CG4HumanDummyLeftBreastSD
 CG4HumanDummyRightBreastSD
 CG4HumanPhantomActionInitialization
 CG4HumanPhantomAnalysisManager
 CG4HumanPhantomColour
 CG4HumanPhantomConstruction
 CG4HumanPhantomEventAction
 CG4HumanPhantomHit
 CG4HumanPhantomMaterial
 CG4HumanPhantomMessenger
 CG4HumanPhantomPhysicsList
 CG4HumanPhantomPrimaryGeneratorAction
 CG4HumanPhantomRunAction
 CG4HumanPhantomSD
 CG4HumanPhantomSteppingAction
 CG4Hydrogen
 CG4Hype
 CG4HyperNucleiProperties
 CG4HyperonFTFPBuilder
 CG4hZiegler1985Nuclear
 CG4hZiegler1985p
 CG4ICRU49NuclearStoppingModel
 CG4ICRU73NoDeltaModel
 CG4ICRU73QOModel
 CG4IDataSet
 CG4IdentityTrajectoryFilter
 CG4IInterpolator
 CG4ILawCommonTruncatedExp
 CG4ILawForceFreeFlight
 CG4ILawTruncatedExp
 CG4ImplicitEuler
 CG4ImpMutexAutoLock
 CG4ImportanceAlgorithm
 CG4ImportanceBiasing
 CG4ImportanceConfigurator
 CG4ImportanceProcess
 CG4INCLXXInterfaceINCL++ intra-nuclear cascade
 CG4INCLXXInterfaceMessenger
 CG4INCLXXInterfaceStoreSingleton class for configuring the INCL++ Geant4 interface
 CG4INCLXXNeutronBuilder
 CG4INCLXXPiKBuilder
 CG4INCLXXProtonBuilder
 CG4IndexError
 CG4InitXscPAI
 CG4Integrator
 CG4InteractionCase
 CG4InteractionCode
 CG4InteractionContent
 CG4InteractionLawPhysical
 CG4InteractorMessenger
 CG4InterpolationIterator
 CG4InterpolationManager
 CG4IntersectingCone
 CG4IntersectionSolid
 CG4IntGrp
 CG4IntraNucleiCascader
 CG4InuclCollider
 CG4InuclElementaryParticle
 CG4InuclEvaporation
 CG4InuclNuclei
 CG4InuclParamAngDst
 CG4InuclParamMomDst
 CG4InuclParticle
 CG4InvalidUICommand
 CG4InversePEEffect
 CG4IonBinaryCascadePhysics
 CG4IonChuFluctuationModel
 CG4IonConstructor
 CG4IonCoulombCrossSection
 CG4IonCoulombScatteringModel
 CG4IonDEDXHandler
 CG4IonDEDXScalingICRU73
 CG4ionEffectiveCharge
 CG4IonElasticPhysics
 CG4IonFluctuations
 CG4IonINCLXXPhysics
 CG4IonInelasticProcess
 CG4IonInverseIonisation
 CG4ionIonisation
 CG4IonisParamElm
 CG4IonisParamMat
 CG4IonParametrisedLossModel
 CG4IonPhysics
 CG4IonProtonCrossSection
 CG4IonQMDPhysics
 CG4Ions
 CG4IonsKoxCrossSection
 CG4IonsShenCrossSection
 CG4IonsSihverCrossSection
 CG4IonStoppingData
 CG4IonTable
 CG4IonYangFluctuationModel
 CG4IsomerTable
 CG4IsoResult
 CG4Isotope
 CG4IsotopeMagneticMomentTable
 CG4IsotopeProperty
 CG4IStore
 CG4IT
 CG4ITBox
 CG4ITDecayChannel
 CG4ITManager
 CG4ITModelHandler
 CG4ITModelManager
 CG4ITModelProcessor
 CG4ITNavigator
 CG4ITNavigatorState_Lock
 CG4ITReactionChange
 CG4ITReactionTable
 CG4ITStepProcessor
 CG4ITStepProcessorState_Lock
 CG4ITTrackHolder
 CG4ITTrackingInteractivity
 CG4ITTrackingManager
 CG4ITTransportation
 CG4ITTransportationManager
 CG4ITType
 CG4ITTypeManager
 CG4JpegCoder
 CG4JpegProperty
 CG4JPsi
 CG4JTPolynomialSolver
 CG4KaonBuilder
 CG4KaonHypSampler
 CG4KaonMinus
 CG4KaonMinusAbsorptionBertini
 CG4KaonMinusField
 CG4KaonMinusInelasticProcess
 CG4KaonPlus
 CG4KaonPlusField
 CG4KaonPlusInelasticProcess
 CG4KaonZero
 CG4KaonZeroField
 CG4KaonZeroLInelasticProcess
 CG4KaonZeroLong
 CG4KaonZeroShort
 CG4KaonZeroSInelasticProcess
 CG4KDMap
 CG4KDNode
 CG4KDTree
 CG4KDTreeResult
 CG4KineticTrack
 CG4KineticTrackVector
 CG4KL3DecayChannel
 CG4KleinNishinaCompton
 CG4KleinNishinaModel
 CG4KM_DummyField
 CG4KM_NucleonEqRhs
 CG4KM_OpticalEqRhs
 CG4KokoulinMuonNuclearXS
 CG4KshellECDecayChannel
 CG4Lambda
 CG4Lambdab
 CG4LambdacPlus
 CG4LambdaInelasticProcess
 CG4LatticeLogical
 CG4LatticeManager
 CG4LatticePhysical
 CG4LatticeReader
 CG4LENDCapture
 CG4LENDCaptureCrossSection
 CG4LENDCrossSection
 CG4LENDElastic
 CG4LENDElasticCrossSection
 CG4LENDFission
 CG4LENDFissionCrossSection
 CG4LENDInelastic
 CG4LENDInelasticCrossSection
 CG4LENDManager
 CG4LENDModel
 CG4LENDUsedTarget
 CG4LEnp
 CG4LEpp
 CG4LeptonConstructor
 CG4LevelManager
 CG4LevelReader
 CG4LFission
 CG4Li5FermiFragment
 CG4Li6GEMChannel
 CG4Li6GEMCoulombBarrier
 CG4Li6GEMProbability
 CG4Li7GEMChannel
 CG4Li7GEMCoulombBarrier
 CG4Li7GEMProbability
 CG4Li8GEMChannel
 CG4Li8GEMCoulombBarrier
 CG4Li8GEMProbability
 CG4Li9GEMChannel
 CG4Li9GEMCoulombBarrier
 CG4Li9GEMProbability
 CG4LightMedia
 CG4LindhardRobinsonPartition
 CG4LineCurrentMagField
 CG4LineSection
 CG4LinInterpolation
 CG4LinInterpolator
 CG4LinLogInterpolation
 CG4LinLogLogInterpolation
 CG4LivermoreBremsstrahlungModel
 CG4LivermoreComptonModel
 CG4LivermoreComptonModifiedModel
 CG4LivermoreGammaConversionModel
 CG4LivermoreGammaConversionModelRC
 CG4LivermoreIonisationCrossSection
 CG4LivermoreIonisationModel
 CG4LivermoreNuclearGammaConversionModel
 CG4LivermorePhotoElectricModel
 CG4LivermorePolarizedComptonModel
 CG4LivermorePolarizedGammaConversionModel
 CG4LivermorePolarizedPhotoElectricModel
 CG4LivermorePolarizedRayleighModel
 CG4LivermoreRayleighModel
 CG4LocalThreadCoutMessenger
 CG4LogicalBorderSurface
 CG4LogicalSkinSurface
 CG4LogicalSurface
 CG4LogicalVolume
 CG4LogicalVolumeModel
 CG4LogicalVolumeStore
 CG4LogLogInterpolation
 CG4LogLogInterpolator
 CG4LorentzConvertor
 CG4LossTableBuilder
 CG4LossTableManager
 CG4LowEIonFragmentation
 CG4LowEnergyBremsstrahlung
 CG4LowEnergyCompton
 CG4LowEnergyGammaConversion
 CG4LowEnergyIonisation
 CG4LowEnergyPhotoElectric
 CG4LowEnergyPolarizedCompton
 CG4LowEnergyRayleigh
 CG4LowEPComptonModel
 CG4LowEXsection
 CG4LPhysicsFreeVector
 CG4LshellECDecayChannel
 CG4LundStringFragmentation
 CG4LVData
 CG4Mag_EqRhs
 CG4Mag_SpinEqRhs
 CG4Mag_UsualEqRhs
 CG4MagErrorStepper
 CG4MagHelicalStepper
 CG4MagInt_Driver
 CG4MagIntegratorStepper
 CG4MagneticField
 CG4MagneticFieldModel
 CG4MaleBuilder
 CG4MapCache
 CG4Material
 CG4MaterialCutsCouple
 CG4MaterialPropertiesTable
 CG4MaterialScanner
 CG4MatScanMessenger
 CG4MaxTimeCuts
 CG4MCCIndexConversionTable
 CG4MCTEvent
 CG4MCTGenEvent
 CG4MCTSimEvent
 CG4MCTSimParticle
 CG4MCTSimVertex
 CG4MemoryError
 CG4MesonAbsorption
 CG4MesonConstructor
 CG4MesonSplitter
 CG4Mg22GEMChannel
 CG4Mg22GEMCoulombBarrier
 CG4Mg22GEMProbability
 CG4Mg23GEMChannel
 CG4Mg23GEMCoulombBarrier
 CG4Mg23GEMProbability
 CG4Mg24GEMChannel
 CG4Mg24GEMCoulombBarrier
 CG4Mg24GEMProbability
 CG4Mg25GEMChannel
 CG4Mg25GEMCoulombBarrier
 CG4Mg25GEMProbability
 CG4Mg26GEMChannel
 CG4Mg26GEMCoulombBarrier
 CG4Mg26GEMProbability
 CG4Mg27GEMChannel
 CG4Mg27GEMCoulombBarrier
 CG4Mg27GEMProbability
 CG4Mg28GEMChannel
 CG4Mg28GEMCoulombBarrier
 CG4Mg28GEMProbability
 CG4MicroElecCrossSectionDataSet
 CG4MicroElecElastic
 CG4MicroElecElasticModel
 CG4MicroElecInelastic
 CG4MicroElecInelasticModel
 CG4MicroElecSiStructure
 CG4MinEkineCuts
 Cg4mini
 CG4MIRDBodyFactory
 CG4MIRDBrain
 CG4MIRDHead
 CG4MIRDHeart
 CG4MIRDLeftAdrenal
 CG4MIRDLeftArmBone
 CG4MIRDLeftBreast
 CG4MIRDLeftClavicle
 CG4MIRDLeftKidney
 CG4MIRDLeftLeg
 CG4MIRDLeftLegBone
 CG4MIRDLeftLung
 CG4MIRDLeftOvary
 CG4MIRDLeftScapula
 CG4MIRDLeftTeste
 CG4MIRDLiver
 CG4MIRDLowerLargeIntestine
 CG4MIRDMaleGenitalia
 CG4MIRDMiddleLowerSpine
 CG4MIRDPancreas
 CG4MIRDPelvis
 CG4MIRDRibCage
 CG4MIRDRightAdrenal
 CG4MIRDRightArmBone
 CG4MIRDRightBreast
 CG4MIRDRightClavicle
 CG4MIRDRightKidney
 CG4MIRDRightLeg
 CG4MIRDRightLegBone
 CG4MIRDRightLung
 CG4MIRDRightOvary
 CG4MIRDRightScapula
 CG4MIRDRightTeste
 CG4MIRDSkull
 CG4MIRDSmallIntestine
 CG4MIRDSpleen
 CG4MIRDStomach
 CG4MIRDThymus
 CG4MIRDThyroid
 CG4MIRDTrunk
 CG4MIRDUpperLargeIntestine
 CG4MIRDUpperSpine
 CG4MIRDUrinaryBladder
 CG4MIRDUterus
 CG4ModelCmdActive
 CG4ModelCmdAddInt
 CG4ModelCmdAddInterval
 CG4ModelCmdAddIntervalContext
 CG4ModelCmdAddString
 CG4ModelCmdAddValue
 CG4ModelCmdAddValueContext
 CG4ModelCmdApplyBool
 CG4ModelCmdApplyColour
 CG4ModelCmdApplyDouble
 CG4ModelCmdApplyDoubleAndUnit
 CG4ModelCmdApplyInteger
 CG4ModelCmdApplyNull
 CG4ModelCmdApplyString
 CG4ModelCmdApplyStringColour
 CG4ModelCmdCreateContextDir
 CG4ModelCmdDraw
 CG4ModelCmdInvert
 CG4ModelCmdReset
 CG4ModelCmdSetAuxPtsColour
 CG4ModelCmdSetAuxPtsFillStyle
 CG4ModelCmdSetAuxPtsSize
 CG4ModelCmdSetAuxPtsSizeType
 CG4ModelCmdSetAuxPtsType
 CG4ModelCmdSetAuxPtsVisible
 CG4ModelCmdSetDefaultColour
 CG4ModelCmdSetDrawAuxPts
 CG4ModelCmdSetDrawLine
 CG4ModelCmdSetDrawStepPts
 CG4ModelCmdSetLineColour
 CG4ModelCmdSetLineVisible
 CG4ModelCmdSetStepPtsColour
 CG4ModelCmdSetStepPtsFillStyle
 CG4ModelCmdSetStepPtsSize
 CG4ModelCmdSetStepPtsSizeType
 CG4ModelCmdSetStepPtsType
 CG4ModelCmdSetStepPtsVisible
 CG4ModelCmdSetString
 CG4ModelCmdSetStringColour
 CG4ModelCmdSetTimeSliceInterval
 CG4ModelCmdVerbose
 CG4ModelColourMap
 CG4ModelingParameters
 CG4ModifiedTsai
 CG4MolecularConfiguration
 CG4MolecularDecayChannel
 CG4MolecularDecayTable
 CG4Molecule
 CG4MoleculeCounter
 CG4MoleculeDefinition
 CG4MoleculeHandleManager
 CG4MoleculeID
 CG4MollerBhabhaModel
 CG4Monopole
 CG4MonopoleEq
 CG4MonopoleEquation
 CG4MonopoleFieldMessenger
 CG4MonopoleFieldSetup
 CG4MonopolePhysics
 CG4MonopolePhysicsMessenger
 CG4MonopoleTransportation
 CG4MottCoefficients
 CG4MPIbatch
 CG4MPImanager
 CG4MPImessenger
 CG4MPIrandomSeedGenerator
 CG4MPIsession
 CG4MPIstatus
 CG4mplIonisation
 CG4mplIonisationModel
 CG4mplIonisationWithDeltaModel
 CG4MshellECDecayChannel
 CG4MSSteppingAction
 CG4MTcoutDestination
 CG4MTHepRandom
 CG4MTRandBit
 CG4MTRandExponential
 CG4MTRandFlat
 CG4MTRandGamma
 CG4MTRandGauss
 CG4MTRandGaussQ
 CG4MTRandGeneral
 CG4MTRunManager
 CG4MTRunManagerKernel
 CG4MuBetheBlochModel
 CG4MuBremsstrahlung
 CG4MuBremsstrahlungModel
 CG4MuElecCrossSectionDataSet
 CG4MuElecElastic
 CG4MuElecElasticModel
 CG4MuElecInelastic
 CG4MuElecInelasticModel
 CG4MuElecSiStructure
 CG4MuIonisation
 CG4MultiBodyMomentumDist
 CG4MultiFunctionalDetector
 CG4MultiLevelLocator
 CG4MultiNavigator
 CG4MuMinusCaptureCascade
 CG4MuMinusCapturePrecompound
 CG4MuMultipleScattering
 CG4MuonDecayChannel
 CG4MuonDecayChannelWithSpin
 CG4MuonMinus
 CG4MuonMinusBoundDecay
 CG4MuonMinusCapture
 CG4MuonMinusCaptureAtRest
 CG4MuonNuclearProcess
 CG4MuonPlus
 CG4MuonRadiativeDecayChannelWithSpin
 CG4MuonVDNuclearModel
 CG4MuPairProduction
 CG4MuPairProductionModel
 CG4N12GEMChannel
 CG4N12GEMCoulombBarrier
 CG4N12GEMProbability
 CG4N13GEMChannel
 CG4N13GEMCoulombBarrier
 CG4N13GEMProbability
 CG4N14GEMChannel
 CG4N14GEMCoulombBarrier
 CG4N14GEMProbability
 CG4N15GEMChannel
 CG4N15GEMCoulombBarrier
 CG4N15GEMProbability
 CG4N16GEMChannel
 CG4N16GEMCoulombBarrier
 CG4N16GEMProbability
 CG4N17GEMChannel
 CG4N17GEMCoulombBarrier
 CG4N17GEMProbability
 CG4Na21GEMChannel
 CG4Na21GEMCoulombBarrier
 CG4Na21GEMProbability
 CG4Na22GEMChannel
 CG4Na22GEMCoulombBarrier
 CG4Na22GEMProbability
 CG4Na23GEMChannel
 CG4Na23GEMCoulombBarrier
 CG4Na23GEMProbability
 CG4Na24GEMChannel
 CG4Na24GEMCoulombBarrier
 CG4Na24GEMProbability
 CG4Na25GEMChannel
 CG4Na25GEMCoulombBarrier
 CG4Na25GEMProbability
 CG4NativeScreenedCoulombCrossSection
 CG4NavigationHistory
 CG4NavigationLevel
 CG4NavigationLevelRep
 CG4NavigationLogger
 CG4Navigator
 CG4NDeltastarBuilder
 CG4Ne18GEMChannel
 CG4Ne18GEMCoulombBarrier
 CG4Ne18GEMProbability
 CG4Ne19GEMChannel
 CG4Ne19GEMCoulombBarrier
 CG4Ne19GEMProbability
 CG4Ne20GEMChannel
 CG4Ne20GEMCoulombBarrier
 CG4Ne20GEMProbability
 CG4Ne21GEMChannel
 CG4Ne21GEMCoulombBarrier
 CG4Ne21GEMProbability
 CG4Ne22GEMChannel
 CG4Ne22GEMCoulombBarrier
 CG4Ne22GEMProbability
 CG4Ne23GEMChannel
 CG4Ne23GEMCoulombBarrier
 CG4Ne23GEMProbability
 CG4Ne24GEMChannel
 CG4Ne24GEMCoulombBarrier
 CG4Ne24GEMProbability
 CG4NeutrinoE
 CG4NeutrinoMu
 CG4NeutrinoTau
 CG4Neutron
 CG4NeutronBetaDecayChannel
 CG4NeutronBuilder
 CG4NeutronCaptureXS
 CG4NeutronCoulombBarrier
 CG4NeutronCrossSectionXS
 CG4NeutronElasticXS
 CG4NeutronEvaporationChannel
 CG4NeutronEvaporationProbability
 CG4NeutronField
 CG4NeutronGEMChannel
 CG4NeutronGEMProbability
 CG4NeutronHP2AInelasticFS
 CG4NeutronHP2N2AInelasticFS
 CG4NeutronHP2NAInelasticFS
 CG4NeutronHP2NDInelasticFS
 CG4NeutronHP2NInelasticFS
 CG4NeutronHP2NPInelasticFS
 CG4NeutronHP2PInelasticFS
 CG4NeutronHP3AInelasticFS
 CG4NeutronHP3NAInelasticFS
 CG4NeutronHP3NInelasticFS
 CG4NeutronHP3NPInelasticFS
 CG4NeutronHP4NInelasticFS
 CG4NeutronHPAInelasticFS
 CG4NeutronHPAngular
 CG4NeutronHPAngularP
 CG4NeutronHPArbitaryTab
 CG4NeutronHPBGGNucleonInelasticXS
 CG4NeutronHPBuilder
 CG4NeutronHPCapture
 CG4NeutronHPCaptureData
 CG4NeutronHPCaptureFS
 CG4NeutronHPChannel
 CG4NeutronHPChannelList
 CG4NeutronHPContAngularPar
 CG4NeutronHPContEnergyAngular
 CG4NeutronHPD2AInelasticFS
 CG4NeutronHPDAInelasticFS
 CG4NeutronHPData
 CG4NeutronHPDataPoint
 CG4NeutronHPDataUsed
 CG4NeutronHPDeExGammas
 CG4NeutronHPDInelasticFS
 CG4NeutronHPDiscreteTwoBody
 CG4NeutronHPElastic
 CG4NeutronHPElasticData
 CG4NeutronHPElasticFS
 CG4NeutronHPElementData
 CG4NeutronHPEnAngCorrelation
 CG4NeutronHPEnergyDistribution
 CG4NeutronHPEvapSpectrum
 CG4NeutronHPFastLegendre
 CG4NeutronHPFCFissionFS
 CG4NeutronHPFFFissionFS
 CG4NeutronHPField
 CG4NeutronHPFieldPoint
 CG4NeutronHPFinalState
 CG4NeutronHPFission
 CG4NeutronHPFissionBaseFS
 CG4NeutronHPFissionData
 CG4NeutronHPFissionERelease
 CG4NeutronHPFissionFS
 CG4NeutronHPFissionSpectrum
 CG4NeutronHPFSFissionFS
 CG4NeutronHPGamma
 CG4NeutronHPHash
 CG4NeutronHPHe3InelasticFS
 CG4NeutronHPInelastic
 CG4NeutronHPInelasticBaseFS
 CG4NeutronHPInelasticCompFS
 CG4NeutronHPInelasticData
 CG4NeutronHPInterpolator
 CG4NeutronHPIsoData
 CG4NeutronHPIsotropic
 CG4NeutronHPJENDLHEData
 CG4NeutronHPJENDLHEElasticData
 CG4NeutronHPJENDLHEInelasticData
 CG4NeutronHPKallbachMannSyst
 CG4NeutronHPLabAngularEnergy
 CG4NeutronHPLCFissionFS
 CG4NeutronHPLegendreStore
 CG4NeutronHPLegendreTable
 CG4NeutronHPLevel
 CG4NeutronHPList
 CG4NeutronHPMadlandNixSpectrum
 CG4NeutronHPManager
 CG4NeutronHPN2AInelasticFS
 CG4NeutronHPN2PInelasticFS
 CG4NeutronHPN3AInelasticFS
 CG4NeutronHPNAInelasticFS
 CG4NeutronHPNames
 CG4NeutronHPNBodyPhaseSpace
 CG4NeutronHPND2AInelasticFS
 CG4NeutronHPNDInelasticFS
 CG4NeutronHPNeutronYield
 CG4NeutronHPNHe3InelasticFS
 CG4NeutronHPNInelasticFS
 CG4NeutronHPNPAInelasticFS
 CG4NeutronHPNPInelasticFS
 CG4NeutronHPNT2AInelasticFS
 CG4NeutronHPNTInelasticFS
 CG4NeutronHPNXInelasticFS
 CG4NeutronHPPAInelasticFS
 CG4NeutronHPPartial
 CG4NeutronHPPDInelasticFS
 CG4NeutronHPPhotonDist
 CG4NeutronHPPhotonXSection
 CG4NeutronHPPInelasticFS
 CG4NeutronHPPolynomExpansion
 CG4NeutronHPProduct
 CG4NeutronHPPTInelasticFS
 CG4NeutronHPReactionWhiteBoard
 CG4NeutronHPSCFissionFS
 CG4NeutronHPSimpleEvapSpectrum
 CG4NeutronHPT2AInelasticFS
 CG4NeutronHPTCFissionFS
 CG4NeutronHPThermalBoost
 CG4NeutronHPThermalScattering
 CG4NeutronHPThermalScatteringData
 CG4NeutronHPThermalScatteringNames
 CG4NeutronHPTInelasticFS
 CG4NeutronHPVector
 CG4NeutronHPWattSpectrum
 CG4NeutronInelasticCrossSection
 CG4NeutronInelasticProcess
 CG4NeutronInelasticXS
 CG4NeutronKiller
 CG4NeutronKillerMessenger
 CG4NeutronLENDBuilder
 CG4NeutronRadCapture
 CG4NeutronTrackingCut
 CG4Nevent
 CG4NistElementBuilder
 CG4NistManager
 CG4NistMaterialBuilder
 CG4NistMessenger
 CG4NNstarBuilder
 CG4NoModelFound
 CG4NonEquilibriumEvaporator
 CG4NormalNavigation
 CG4NotSupported
 CG4NP2NPAngDst
 CG4Nsplit_Weight
 CG4NuclearAbrasionGeometry
 CG4NuclearDecayChannel
 CG4NuclearFermiDensity
 CG4NuclearLevel
 CG4NuclearLevelManager
 CG4NuclearLevelStore
 CG4NuclearShellModelDensity
 CG4NuclearStopping
 CG4NucleiModel
 CG4NucleiProperties
 CG4NucleiPropertiesTableAME03
 CG4NucleiPropertiesTheoreticalTable
 CG4Nucleon
 CG4NucleonNuclearCrossSection
 CG4Nucleus
 CG4NucleusLimits
 CG4NucLevel
 CG4NuclideTable
 CG4NuclNucl3BodyAngDst
 CG4NuclNucl3BodyMomDst
 CG4NuclNucl4BodyMomDst
 CG4NuclNuclAngDst
 CG4NuclNuclDiffuseElastic
 CG4NuclWatcher
 CG4NullModel
 CG4NumIntTwoBodyAngDst
 CG4NystromRK4
 CG4O14GEMChannel
 CG4O14GEMCoulombBarrier
 CG4O14GEMProbability
 CG4O15GEMChannel
 CG4O15GEMCoulombBarrier
 CG4O15GEMProbability
 CG4O16GEMChannel
 CG4O16GEMCoulombBarrier
 CG4O16GEMProbability
 CG4O17GEMChannel
 CG4O17GEMCoulombBarrier
 CG4O17GEMProbability
 CG4O18GEMChannel
 CG4O18GEMCoulombBarrier
 CG4O18GEMProbability
 CG4O19GEMChannel
 CG4O19GEMCoulombBarrier
 CG4O19GEMProbability
 CG4O20GEMChannel
 CG4O20GEMCoulombBarrier
 CG4O20GEMProbability
 CG4ofstreamDestinationBase
 CG4OH
 CG4OmegabMinus
 CG4OmegacZero
 CG4OmegaMinus
 CG4OmegaMinusInelasticProcess
 CG4OpAbsorption
 CG4OpBoundaryProcess
 CG4OpenGL2PSAction
 CG4OpenGLFontBaseStore
 CG4OpenGLImmediateQt
 CG4OpenGLImmediateWin32
 CG4OpenGLImmediateWt
 CG4OpenGLImmediateX
 CG4OpenGLImmediateXm
 CG4OpenGLQt
 CG4OpenGLStoredQt
 CG4OpenGLStoredWin32
 CG4OpenGLStoredX
 CG4OpenGLStoredXm
 CG4OpenGLViewerMessenger
 CG4OpenInventor
 CG4OpenInventorWin
 CG4OpenInventorWin32
 CG4OpenInventorX
 CG4OpenInventorXt
 CG4OpenInventorXtExaminerViewer
 CG4OpenInventorXtExtended
 CG4OpMieHG
 CG4OpRayleigh
 CG4Opt
 CG4OpticalPhoton
 CG4OpticalPhysics
 CG4OpticalPhysicsMessenger
 CG4OpticalSurface
 CG4OpWLS
 CG4Orb
 CG4OrderedTable
 CG4OrlicLiXsModel
 CG4OTubs
 CG4OutBitStream
 CG4Pace
 CG4PAIModel
 CG4PAIModelData
 CG4PAIPhotData
 CG4PAIPhotModel
 CG4PAIPhotonModel
 CG4Pair
 CG4PairingCorrection
 CG4PairProductionRelModel
 CG4PAIxSection
 CG4PAIySection
 CG4Para
 CG4Paraboloid
 CG4ParaFissionModel
 CG4ParallelWorldPhysics
 CG4ParallelWorldProcess
 CG4ParallelWorldScoringProcess
 CG4ParameterisationBoxX
 CG4ParameterisationBoxY
 CG4ParameterisationBoxZ
 CG4ParameterisationConsPhi
 CG4ParameterisationConsRho
 CG4ParameterisationConsZ
 CG4ParameterisationParaX
 CG4ParameterisationParaY
 CG4ParameterisationParaZ
 CG4ParameterisationPolyconePhi
 CG4ParameterisationPolyconeRho
 CG4ParameterisationPolyconeZ
 CG4ParameterisationPolyhedraPhi
 CG4ParameterisationPolyhedraRho
 CG4ParameterisationPolyhedraZ
 CG4ParameterisationTrdX
 CG4ParameterisationTrdY
 CG4ParameterisationTrdZ
 CG4ParameterisationTubsPhi
 CG4ParameterisationTubsRho
 CG4ParameterisationTubsZ
 CG4ParameterisedNavigation
 CG4ParamExpTwoBodyAngDst
 CG4ParamType1GlaubAADataSet
 CG4PartialPhantomParameterisation
 CG4PartialWidthTable
 CG4ParticleChange
 CG4ParticleChangeForDecay
 CG4ParticleChangeForGamma
 CG4ParticleChangeForLoss
 CG4ParticleChangeForMSC
 CG4ParticleChangeForNothing
 CG4ParticleChangeForOccurenceBiasing
 CG4ParticleChangeForRadDecay
 CG4ParticleChangeForTransport
 CG4ParticleDefinition
 CG4ParticleGun
 CG4ParticleGunMessenger
 CG4ParticleLargerBeta
 CG4ParticleLargerEkin
 CG4ParticleMessenger
 CG4ParticlePropertyData
 CG4ParticlePropertyMessenger
 CG4ParticlePropertyTable
 CG4ParticleTable
 CG4ParticleTableIterator
 CG4ParticleTypeConverter
 CG4Parton
 CG4PartonPair
 CG4PathFinder
 CG4PaulKxsModel
 CG4PDefData
 CG4PDefSplitter
 CG4PDGCodeChecker
 CG4PEEffectFluoModel
 CG4PenelopeAnnihilationModel
 CG4PenelopeBremsstrahlungAngular
 CG4PenelopeBremsstrahlungFS
 CG4PenelopeBremsstrahlungModel
 CG4PenelopeComptonModel
 CG4PenelopeCrossSection
 CG4PenelopeGammaConversionModel
 CG4PenelopeIonisationCrossSection
 CG4PenelopeIonisationModel
 CG4PenelopeIonisationXSHandler
 CG4PenelopeOscillator
 CG4PenelopeOscillatorManager
 CG4PenelopeOscillatorResEnergyComparator
 CG4PenelopePhotoElectricModel
 CG4PenelopeRayleighModel
 CG4PenelopeSamplingData
 CG4PersistencyCenter
 CG4PersistencyCenterMessenger
 CG4PersistencyManager
 CG4PersistencyManagerT
 CG4Pevent
 CG4PhantomBuilder
 CG4PhantomHeadBuilder
 CG4PhantomParameterisation
 CG4PhaseSpaceDecayChannel
 CG4PhononDownconversion
 CG4PhononLong
 CG4PhononReflection
 CG4PhononScattering
 CG4PhononTrackMap
 CG4PhononTransFast
 CG4PhononTransSlow
 CG4PhotoElectricAngularGeneratorPolarized
 CG4PhotoElectricAngularGeneratorSauterGavrila
 CG4PhotoElectricAngularGeneratorSimple
 CG4PhotoElectricEffect
 CG4PhotonEvaporation
 CG4PhotoNuclearCrossSection
 CG4PhotoNuclearProcess
 CG4PhSideData
 CG4PhysicalVolumeMassScene
 CG4PhysicalVolumeModel
 CG4PhysicalVolumeSearchScene
 CG4PhysicalVolumeStore
 CG4Physics2DVector
 CG4PhysicsConstructorFactory
 CG4PhysicsConstructorRegistry
 CG4PhysicsFreeVector
 CG4PhysicsLinearVector
 CG4PhysicsListHelper
 CG4PhysicsListOrderingParameter
 CG4PhysicsLnVector
 CG4PhysicsLogVector
 CG4PhysicsModelCatalog
 CG4PhysicsOrderedFreeVector
 CG4PhysicsTable
 CG4PhysicsTableHelper
 CG4PhysicsVector
 CG4PhysListFactory
 CG4PhysListUtil
 CG4PiData
 CG4PiKBuilder
 CG4PiMinusAbsorptionBertini
 CG4ping
 CG4PiNInelasticAngDst
 CG4PiNuclearCrossSection
 CG4PionBuilder
 CG4PionDecayMakeSpin
 CG4PionMinus
 CG4PionMinusField
 CG4PionMinusInelasticProcess
 CG4PionNucSampler
 CG4PionPlus
 CG4PionPlusField
 CG4PionPlusInelasticProcess
 CG4PionRadiativeDecayChannel
 CG4PionZero
 CG4PionZeroField
 CG4PixeCrossSectionHandler
 CG4PixeShellDataSet
 CG4PlacedPolyhedron
 CG4PlSideData
 CG4Point3DList
 CG4PolarizationHelper
 CG4PolarizationManager
 CG4PolarizationMessenger
 CG4PolarizedAnnihilationCrossSection
 CG4PolarizedAnnihilationModel
 CG4PolarizedBhabhaCrossSection
 CG4PolarizedBremsstrahlungCrossSection
 CG4PolarizedCompton
 CG4PolarizedComptonCrossSection
 CG4PolarizedComptonModel
 CG4PolarizedGammaConversion
 CG4PolarizedGammaConversionModel
 CG4PolarizedMollerBhabhaModel
 CG4PolarizedMollerCrossSection
 CG4PolarizedPairProductionCrossSection
 CG4PolarizedPEEffectCrossSection
 CG4PolarizedPEEffectModel
 CG4PolarizedPhotoElectricEffect
 CG4Polycone
 CG4PolyconeHistorical
 CG4PolyconeSide
 CG4PolyconeSideRZ
 CG4Polyhedra
 CG4PolyhedraHistorical
 CG4PolyhedraSide
 CG4PolyhedraSideRZ
 CG4Polyhedron
 CG4PolyhedronArbitrary
 CG4PolyhedronBox
 CG4PolyhedronCone
 CG4PolyhedronCons
 CG4PolyhedronEllipsoid
 CG4PolyhedronEllipticalCone
 CG4PolyhedronHype
 CG4PolyhedronPara
 CG4PolyhedronParaboloid
 CG4PolyhedronPcon
 CG4PolyhedronPgon
 CG4PolyhedronSphere
 CG4PolyhedronTorus
 CG4PolyhedronTrap
 CG4PolyhedronTrd1
 CG4PolyhedronTrd2
 CG4PolyhedronTube
 CG4PolyhedronTubs
 CG4Polyline
 CG4Polymarker
 CG4PolynomialSolver
 CG4PolyPhiFace
 CG4PolyPhiFaceEdge
 CG4PolyPhiFaceVertex
 CG4PomeronCrossSection
 CG4Positron
 CG4PositronNuclearProcess
 CG4Pow
 CG4PP2PPAngDst
 CG4PreCompoundAlpha
 CG4PreCompoundDeexcitation
 CG4PreCompoundDeuteron
 CG4PreCompoundEmission
 CG4PreCompoundEmissionFactory
 CG4PreCompoundFragment
 CG4PreCompoundFragmentVector
 CG4PreCompoundHe3
 CG4PreCompoundIon
 CG4PreCompoundModel
 CG4PreCompoundNeutron
 CG4PreCompoundNucleon
 CG4PreCompoundParameters
 CG4PreCompoundProton
 CG4PreCompoundTransitions
 CG4PreCompoundTriton
 CG4PrecoNeutronBuilder
 CG4PrecoProtonBuilder
 CG4PrimaryParticle
 CG4PrimaryTransformer
 CG4PrimaryVertex
 CG4ProcessAttribute
 CG4ProcessManager
 CG4ProcessManagerMessenger
 CG4ProcessPlacer
 CG4ProcessState_Lock
 CG4ProcessTable
 CG4ProcessTableMessenger
 CG4ProcessVector
 CG4ProcTblElement
 CG4ProductionCuts
 CG4ProductionCutsTable
 CG4ProductionCutsTableMessenger
 CG4ProjectileFragmentCrossSection
 CG4PromptPhotonEvaporation
 CG4PropagatorInField
 CG4Proton
 CG4ProtonBuilder
 CG4ProtonCoulombBarrier
 CG4ProtonEvaporationChannel
 CG4ProtonEvaporationProbability
 CG4ProtonField
 CG4ProtonGEMChannel
 CG4ProtonGEMCoulombBarrier
 CG4ProtonGEMProbability
 CG4ProtonInelasticCrossSection
 CG4ProtonInelasticProcess
 CG4PSCellCharge
 CG4PSCellCharge3D
 CG4PSCellFlux
 CG4PSCellFlux3D
 CG4PSCellFluxForCylinder3D
 CG4PSCylinderSurfaceCurrent
 CG4PSCylinderSurfaceCurrent3D
 CG4PSCylinderSurfaceFlux
 CG4PSCylinderSurfaceFlux3D
 CG4PSDoseDeposit
 CG4PSDoseDeposit3D
 CG4PSDoseDepositForCylinder3D
 CG4PSEnergyDeposit
 CG4PSEnergyDeposit3D
 CG4PSFlatSurfaceCurrent
 CG4PSFlatSurfaceCurrent3D
 CG4PSFlatSurfaceFlux
 CG4PSFlatSurfaceFlux3D
 CG4PSHitsModel
 CG4PSMinKinEAtGeneration
 CG4PSMinKinEAtGeneration3D
 CG4PSNofCollision
 CG4PSNofCollision3D
 CG4PSNofSecondary
 CG4PSNofSecondary3D
 CG4PSNofStep
 CG4PSNofStep3D
 CG4PSPassageCellCurrent
 CG4PSPassageCellCurrent3D
 CG4PSPassageCellFlux
 CG4PSPassageCellFlux3D
 CG4PSPassageCellFluxForCylinder3D
 CG4PSPassageTrackLength
 CG4PSPassageTrackLength3D
 CG4PSPopulation
 CG4PSPopulation3D
 CG4PSSphereSurfaceCurrent
 CG4PSSphereSurfaceCurrent3D
 CG4PSSphereSurfaceFlux
 CG4PSSphereSurfaceFlux3D
 CG4PSStepChecker
 CG4PSStepChecker3D
 CG4PSTARStopping
 CG4PSTermination
 CG4PSTermination3D
 CG4PSTrackCounter
 CG4PSTrackCounter3D
 CG4PSTrackLength
 CG4PSTrackLength3D
 CG4PVData
 CG4PVDivision
 CG4PVDivisionFactory
 CG4PVParameterised
 CG4PVPlacement
 CG4PVReplica
 CG4PyCoutDestination
 CG4Pythia6Decayer
 CG4Pythia6DecayerMessenger
 CG4QAOLowEnergyLoss
 CG4QGSBinaryKaonBuilder
 CG4QGSBinaryNeutronBuilder
 CG4QGSBinaryPiKBuilder
 CG4QGSBinaryPionBuilder
 CG4QGSBinaryProtonBuilder
 CG4QGSBuilder
 CG4QGSDiffractiveExcitation
 CG4QGSMFragmentation
 CG4QGSModel
 CG4QGSMParameters
 CG4QGSMSplitableHadron
 CG4QGSParticipants
 CG4QGSPNeutronBuilder
 CG4QGSPPiKBuilder
 CG4QGSPPionBuilder
 CG4QGSPProtonBuilder
 CG4QMDCollision
 CG4QMDGroundStateNucleus
 CG4QMDMeanField
 CG4QMDNucleus
 CG4QMDParameters
 CG4QMDParticipant
 CG4QMDReaction
 CG4QMDSystem
 CG4QuadrangularFacet
 CG4QuadrupoleMagField
 CG4Quarks
 CG4QuasiElasticChannel
 CG4QuasiElRatios
 CG4RadioactiveDecay
 CG4RadioactiveDecaymessenger
 CG4RadioactiveDecayPhysics
 CG4RadioactiveDecayRate
 CG4RadioactiveDecayRateVector
 CG4RadioactivityTable
 CG4RayleighAngularGenerator
 CG4RayleighScattering
 CG4RayShooter
 CG4RayTracer
 CG4RayTracerSceneHandler
 CG4RayTracerViewer
 CG4RayTrajectory
 CG4RayTrajectoryPoint
 CG4RDAtomicDeexcitation
 CG4RDAtomicShell
 CG4RDAtomicTransitionManager
 CG4RDAugerData
 CG4RDAugerTransition
 CG4RDBremsstrahlungCrossSectionHandler
 CG4RDBremsstrahlungParameters
 CG4RDCompositeEMDataSet
 CG4RDCrossSectionHandler
 CG4RDDopplerProfile
 CG4RDeBremsstrahlungSpectrum
 CG4RDeIonisationCrossSectionHandler
 CG4RDeIonisationParameters
 CG4RDeIonisationSpectrum
 CG4RDEMDataSet
 CG4RDFluoData
 CG4RDFluoTransition
 CG4RDGenerator2BN
 CG4RDGenerator2BS
 CG4RDLinInterpolation
 CG4RDLinLogInterpolation
 CG4RDLinLogLogInterpolation
 CG4RDLogLogInterpolation
 CG4RDModifiedTsai
 CG4RDPhotoElectricAngularGeneratorPolarized
 CG4RDPhotoElectricAngularGeneratorSauterGavrila
 CG4RDPhotoElectricAngularGeneratorSimple
 CG4RDRangeNoTest
 CG4RDRangeTest
 CG4RDSemiLogInterpolation
 CG4RDShellData
 CG4RDShellEMDataSet
 CG4RDShellVacancy
 CG4RDVBremAngularDistribution
 CG4RDVCrossSectionHandler
 CG4RDVDataSetAlgorithm
 CG4RDVeLowEnergyLoss
 CG4RDVEMDataSet
 CG4RDVEnergySpectrum
 CG4RDVPhotoElectricAngularDistribution
 CG4RDVRangeTest
 CG4ReactionDynamics
 CG4ReactionKinematics
 CG4ReactionProduct
 CG4ReduciblePolygon
 CG4ReduciblePolygonIterator
 CG4ReferenceCountedHandle
 CG4ReflectedSolid
 CG4ReflectionFactory
 CG4Region
 CG4RegionData
 CG4RegionModels
 CG4RegionStore
 CG4RegularNavigation
 CG4RegularNavigationHelper
 CG4RegularXTRadiator
 CG4RepleteEofM
 CG4ReplicaData
 CG4ReplicaNavigation
 CG4ReplicatedSlice
 CG4ResonanceID
 CG4ResonanceNames
 CG4ResonancePartialWidth
 CG4ResonanceWidth
 CG4RichTrajectory
 CG4RichTrajectoryPoint
 CG4RIsotopeTable
 CG4RKFieldIntegrator
 CG4RKG3_Stepper
 CG4RKPropagation
 CG4RootAnalysisManager
 CG4RootFileManager
 CG4RootNtupleDescription
 CG4RootNtupleManager
 CG4RPGAntiKZeroInelastic
 CG4RPGAntiLambdaInelastic
 CG4RPGAntiNeutronInelastic
 CG4RPGAntiOmegaMinusInelastic
 CG4RPGAntiProtonInelastic
 CG4RPGAntiSigmaMinusInelastic
 CG4RPGAntiSigmaPlusInelastic
 CG4RPGAntiXiMinusInelastic
 CG4RPGAntiXiZeroInelastic
 CG4RPGFragmentation
 CG4RPGInelastic
 CG4RPGKLongInelastic
 CG4RPGKMinusInelastic
 CG4RPGKPlusInelastic
 CG4RPGKShortInelastic
 CG4RPGKZeroInelastic
 CG4RPGLambdaInelastic
 CG4RPGNeutronInelastic
 CG4RPGNucleonInelastic
 CG4RPGOmegaMinusInelastic
 CG4RPGPiMinusInelastic
 CG4RPGPionInelastic
 CG4RPGPionSuppression
 CG4RPGPiPlusInelastic
 CG4RPGProtonInelastic
 CG4RPGReaction
 CG4RPGSigmaMinusInelastic
 CG4RPGSigmaPlusInelastic
 CG4RPGStrangeProduction
 CG4RPGTwoBody
 CG4RPGTwoCluster
 CG4RPGXiMinusInelastic
 CG4RPGXiZeroInelastic
 CG4RTJpegMaker
 CG4RTMessenger
 CG4RToEConvForElectron
 CG4RToEConvForGamma
 CG4RToEConvForPositron
 CG4RToEConvForProton
 CG4RTPrimaryGeneratorAction
 CG4RTRun
 CG4RTRunAction
 CG4RTSimpleScanner
 CG4RTSteppingAction
 CG4RTTrackingAction
 CG4RTWorkerInitialization
 CG4Run
 CG4RunManager
 CG4RunManagerKernel
 CG4RunMessenger
 CG4SafetyHelper
 CG4SampleResonance
 CG4SamplingPostStepAction
 CG4SandiaTable
 CG4SauterGavrilaAngularDistribution
 CG4Scale
 CG4ScaleModel
 CG4Scatterer
 CG4Scene
 CG4SceneHandlerList
 CG4SceneList
 CG4Scintillation
 CG4ScoreLogColorMap
 CG4ScoreQuantityMessenger
 CG4ScoreSplittingProcess
 CG4ScoringBox
 CG4ScoringCylinder
 CG4ScoringManager
 CG4ScoringMessenger
 CG4ScreenedCollisionStage
 CG4ScreenedCoulombClassicalKinematics
 CG4ScreenedCoulombCrossSection
 CG4ScreenedCoulombCrossSectionInfo
 CG4ScreenedNuclearRecoilA process which handles screened Coulomb collisions between nuclei
 CG4ScreeningMottCrossSection
 CG4ScreeningTables
 CG4SDChargedFilter
 CG4SDKineticEnergyFilter
 CG4SDManager
 CG4SDmessenger
 CG4SDNeutralFilter
 CG4SDParticleFilter
 CG4SDParticleWithEnergyFilter
 CG4SDStructure
 CG4SeltzerBergerModel
 CG4SemiLogInterpolation
 CG4SensitiveVolumeList
 CG4ShellCorrection
 CG4ShellData
 CG4ShellEMDataSet
 CG4ShellVacancy
 CG4ShiftedGaussian
 CG4ShortLivedConstructor
 CG4SigmabMinus
 CG4SigmabPlus
 CG4SigmabZero
 CG4SigmacPlus
 CG4SigmacPlusPlus
 CG4SigmacZero
 CG4SigmaMinus
 CG4SigmaMinusAbsorptionBertini
 CG4SigmaMinusField
 CG4SigmaMinusInelasticProcess
 CG4SigmaPlus
 CG4SigmaPlusField
 CG4SigmaPlusInelasticProcess
 CG4SigmaZero
 CG4SigmaZeroField
 CG4SimpleHeum
 CG4SimpleIntegration
 CG4SimpleLocator
 CG4SimplePPReporter
 CG4SimpleRunge
 CG4SimplexDownhill
 CG4SingleDiffractiveExcitation
 CG4SingleParticleSource
 CG4SingleScatter
 CG4SliceTimer
 CG4SmartFilter
 CG4SmartTrackStack
 CG4SmartVoxelHeader
 CG4SmartVoxelNode
 CG4SmartVoxelProxy
 CG4SmartVoxelStat
 CG4SmoothTrajectory
 CG4SmoothTrajectoryPoint
 CG4SoftStringBuilder
 CG4SolidExtentList
 CG4SolidStore
 CG4SolidsWorkspace
 CG4SolidsWorkspacePool
 CG4Solver
 CG4SortHelperPtr
 CG4SPBaryon
 CG4SPBaryonTable
 CG4SpecialCuts
 CG4Sphere
 CG4SPPartonInfo
 CG4SPSAngDistribution
 CG4SPSEneDistribution
 CG4SPSPosDistribution
 CG4SPSRandomGenerator
 CG4Square
 CG4StableFermiFragment
 CG4StableIsotopes
 CG4StackChecker
 CG4StackedTrack
 CG4StackingMessenger
 CG4StackManager
 CG4StatDouble
 CG4StateManager
 CG4StatMF
 CG4StatMFChannel
 CG4StatMFFragment
 CG4StatMFMacroBiNucleon
 CG4StatMFMacroCanonical
 CG4StatMFMacroChemicalPotential
 CG4StatMFMacroMultiNucleon
 CG4StatMFMacroMultiplicity
 CG4StatMFMacroNucleon
 CG4StatMFMacroTemperature
 CG4StatMFMacroTetraNucleon
 CG4StatMFMacroTriNucleon
 CG4StatMFMicroCanonical
 CG4StatMFMicroManager
 CG4StatMFMicroPartition
 CG4StatMFParameters
 CG4Step
 CG4StepLimiter
 CG4StepLimiterPhysics
 CG4SteppingManager
 CG4SteppingVerbose
 CG4StepPoint
 CG4StokesVector
 CG4StopElementSelector
 CG4StoppingPhysics
 CG4StrawTubeXTRadiator
 CG4STRead
 CG4String
 CG4StringModel
 CG4strstreambuf
 CG4SubString
 CG4SubtractionSolid
 CG4SurfaceProperty
 CG4SurfaceVoxelizer
 CG4SurfBits
 CG4SynchrotronRadiation
 CG4SynchrotronRadiationInMat
 CG4TableTemplate
 CG4TauLeptonicDecayChannel
 CG4TauMinus
 CG4TauPlus
 CG4TDigiCollection
 CG4TemplateAutoLock
 CG4TemplateRNGHelper
 CG4teoCrossSection
 CG4Terminator
 CG4TessellatedGeometryAlgorithms
 CG4TessellatedSolid
 CG4Tet
 CG4Text
 CG4TextModel
 CG4TextPPReporter
 CG4TextPPRetriever
 CG4tgbDetectorBuilder
 CG4tgbDetectorConstruction
 CG4tgbElement
 CG4tgbGeometryDumper
 CG4tgbIsotope
 CG4tgbMaterial
 CG4tgbMaterialMgr
 CG4tgbMaterialMixture
 CG4tgbMaterialMixtureByNoAtoms
 CG4tgbMaterialMixtureByVolume
 CG4tgbMaterialMixtureByWeight
 CG4tgbMaterialSimple
 CG4tgbPlaceParamCircle
 CG4tgbPlaceParameterisation
 CG4tgbPlaceParamLinear
 CG4tgbPlaceParamSquare
 CG4tgbRotationMatrix
 CG4tgbRotationMatrixMgr
 CG4tgbVolume
 CG4tgbVolumeMgr
 CG4tgrElement
 CG4tgrElementFromIsotopes
 CG4tgrElementSimple
 CG4tgrEvaluator
 CG4tgrFileIn
 CG4tgrFileReader
 CG4tgrIsotope
 CG4tgrLineProcessor
 CG4tgrMaterial
 CG4tgrMaterialFactory
 CG4tgrMaterialMixture
 CG4tgrMaterialSimple
 CG4tgrMessenger
 CG4tgrParameterMgr
 CG4tgrPlace
 CG4tgrPlaceDivRep
 CG4tgrPlaceParameterisation
 CG4tgrPlaceSimple
 CG4tgrRotationMatrix
 CG4tgrRotationMatrixFactory
 CG4tgrSolid
 CG4tgrSolidBoolean
 CG4tgrUtils
 CG4tgrVolume
 CG4tgrVolumeAssembly
 CG4tgrVolumeDivision
 CG4tgrVolumeMgr
 CG4TheMTRayTracer
 CG4TheoFSGenerator
 CG4TheRayTracer
 CG4THitsCollection
 CG4THitsMap
 CG4ThreadLocalSingleton
 CG4Timer
 CG4Tokenizer
 CG4Torus
 CG4TouchableHistory
 CG4Track
 CG4TrackingInformation
 CG4TrackingManager
 CG4TrackingMessenger
 CG4TrackList
 CG4TrackList_iterator
 CG4TrackListNode
 CG4TrackLogger
 CG4TrackStack
 CG4TrackState
 CG4TrackStateID
 CG4TrackTerminator
 CG4TrajectoriesModel
 CG4Trajectory
 CG4TrajectoryAttributeFilterFactory
 CG4TrajectoryChargeFilter
 CG4TrajectoryChargeFilterFactory
 CG4TrajectoryContainer
 CG4TrajectoryDrawByAttribute
 CG4TrajectoryDrawByAttributeFactory
 CG4TrajectoryDrawByCharge
 CG4TrajectoryDrawByChargeFactory
 CG4TrajectoryDrawByOriginVolume
 CG4TrajectoryDrawByOriginVolumeFactory
 CG4TrajectoryDrawByParticleID
 CG4TrajectoryDrawByParticleIDFactory
 CG4TrajectoryGenericDrawer
 CG4TrajectoryGenericDrawerFactory
 CG4TrajectoryOriginVolumeFilter
 CG4TrajectoryOriginVolumeFilterFactory
 CG4TrajectoryParticleFilter
 CG4TrajectoryParticleFilterFactory
 CG4TrajectoryPoint
 CG4TransitionRadiation
 CG4TransparentRegXTRadiator
 CG4Transportation
 CG4TransportationManager
 CG4Trap
 CG4Trd
 CG4TrialsCounter
 CG4TriangularFacet
 CG4TripathiCrossSection
 CG4TripathiLightCrossSection
 CG4Triton
 CG4TritonCoulombBarrier
 CG4TritonEvaporationChannel
 CG4TritonEvaporationProbability
 CG4TritonGEMChannel
 CG4TritonGEMCoulombBarrier
 CG4TritonGEMProbability
 CG4TritonInelasticProcess
 CG4Tubs
 CG4TwistBoxSide
 CG4TwistedBox
 CG4TwistedTrap
 CG4TwistedTrd
 CG4TwistedTubs
 CG4TwistTrapAlphaSide
 CG4TwistTrapFlatSide
 CG4TwistTrapParallelSide
 CG4TwistTubsFlatSide
 CG4TwistTubsHypeSide
 CG4TwistTubsSide
 CG4TwoBodyAngularDist
 CG4Type1GlauberParameterisation
 CG4TypeKey
 CG4TypeKeyT
 CG4UAtomicDeexcitation
 CG4UBox
 CG4UCons
 CG4UGenericPolycone
 CG4UIaliasList
 CG4UIArrayString
 CG4UIbatch
 CG4UIbridge
 CG4UIcmdWith3Vector
 CG4UIcmdWith3VectorAndUnit
 CG4UIcmdWithABool
 CG4UIcmdWithADouble
 CG4UIcmdWithADoubleAndUnit
 CG4UIcmdWithAnInteger
 CG4UIcmdWithAString
 CG4UIcmdWithNucleusLimits
 CG4UIcmdWithoutParameter
 CG4UIcommand
 CG4UIcommandTree
 CG4UIcontrolMessenger
 CG4UIcsh
 CG4UIdirectory
 CG4UIExecutive
 CG4UIGAG
 CG4UIGainServer
 CG4UImanager
 CG4UImessenger
 CG4UImpish
 CG4UIparameter
 CG4UIsession
 CG4UItcsh
 CG4UIterminal
 CG4UnboundPN
 CG4UniformElectricField
 CG4UniformGravityField
 CG4UniformMagField
 CG4UnionSolid
 CG4UnitDefinition
 CG4UnitsCategory
 CG4UnitsMessenger
 CG4UniversalFluctuation
 CG4UnknownDecay
 CG4UnknownParticle
 CG4UnstableFermiFragment
 CG4UnstableFragmentBreakUp
 CG4UOrb
 CG4UPiNuclearCrossSection
 CG4UPolycone
 CG4UPolyhedra
 CG4Upsilon
 CG4UrbanMscModel
 CG4UrQMD1_3Model
 CG4UserEventAction
 CG4UserLimits
 CG4UserLimitsForRD
 CG4UserPhysicsListMessenger
 CG4UserRunAction
 CG4UserSpecialCuts
 CG4UserStackingAction
 CG4UserSteppingAction
 CG4UserTimeStepAction
 CG4UserTrackingAction
 CG4UserWorkerInitialization
 CG4UserWorkerThreadInitialization
 CG4USolid
 CG4USphere
 CG4UTet
 CG4UTrd
 CG4UTubs
 CG4V3DNucleus
 CG4VAdjointReverseReaction
 CG4VAnalysisManager
 CG4VAngularDistribution
 CG4VAnnihilationCollision
 CG4VAnnihilationCrossSection
 CG4VAntiBarionBuilder
 CG4VarNtp
 CG4VAtomDeexcitation
 CG4VAttValueFilter
 CG4VBasePhysConstrFactory
 CG4VBaseXSFactory
 CG4VBasicShell
 CG4VBiasingInteractionLaw
 CG4VBiasingOperation
 CG4VBiasingOperator
 CG4VBodyFactory
 CG4VCascadeCollider
 CG4VCascadeDeexcitation
 CG4VCollision
 CG4VComponentCrossSection
 CG4VContinuousDiscreteProcess
 CG4VContinuousProcess
 CG4VCoulombBarrier
 CG4VCrossSectionBase
 CG4VCrossSectionDataSet
 CG4VCrossSectionHandler
 CG4VCrossSectionSource
 CG4VCSGface
 CG4VCSGfaceted
 CG4VCurvedTrajectoryFilter
 CG4VDataSetAlgorithm
 CG4VDCIOentry
 CG4VDecayChannel
 CG4VDigi
 CG4VDigiCollection
 CG4VDigitizerModule
 CG4VDiscreteProcess
 CG4VDivisionParameterisation
 CG4VDNAHit
 CG4VDNAReactionModel
 CG4VecpssrKModel
 CG4VecpssrLiModel
 CG4VecpssrMiModel
 CG4VectorCache
 CG4Vee2hadrons
 CG4VElasticCollision
 CG4VelocityTable
 CG4VEmAdjointModel
 CG4VEmAngularDistribution
 CG4VEMDataSet
 CG4VEmFluctuationModel
 CG4VEmissionProbability
 CG4VEmModel
 CG4VEmProcess
 CG4VEnergyLossProcess
 CG4VEnergySpectrum
 CG4VErrorLimitProcess
 CG4VertexCode
 CG4VertexComparator
 CG4VertexInfo
 CG4VEvaporation
 CG4VEvaporationChannel
 CG4VEvaporationFactory
 CG4VExceptionHandler
 CG4VExtDecayer
 CG4VFacet
 CG4VFastSimulationModel
 CG4VFermiBreakUp
 CG4VFermiFragment
 CG4VFieldPropagation
 CG4VFigureFileMaker
 CG4VFileManager
 CG4VFilter
 CG4VFissionBarrier
 CG4VFlavoredParallelWorld
 CG4VGammaDeexcitation
 CG4VGammaTransition
 CG4VGaussianQuadrature
 CG4VGCellFinder
 CG4VGFlashSensitiveDetector
 CG4VGlauberDataSet
 CG4VGlobalFastSimulationManager
 CG4VGraphicsScene
 CG4VGraphicsSystem
 CG4VH1Manager
 CG4VH2Manager
 CG4VHadDecayAlgorithm
 CG4VHadPhaseSpaceAlgorithm
 CG4VHadronModelBuilder
 CG4VHadronPhysics
 CG4VHCIOentry
 CG4VhElectronicStoppingPower
 CG4VHighEnergyGenerator
 CG4VHit
 CG4VHitsCollection
 CG4VhNuclearStoppingPower
 CG4VhShellCrossSection
 CG4ViewerList
 CG4ViewParameters
 CG4VImportanceAlgorithm
 CG4VImportanceSplitExaminer
 CG4VInteractiveSession
 CG4VInteractorManager
 CG4VIntersectionLocator
 CG4VIntraNuclearTransportModel
 CG4VIonDEDXScalingAlgorithm
 CG4VIonDEDXTable
 CG4VisAttributes
 CG4VisCommandAbortReviewKeptEvents
 CG4VisCommandDrawTree
 CG4VisCommandDrawView
 CG4VisCommandDrawVolume
 CG4VisCommandEnable
 CG4VisCommandGeometryList
 CG4VisCommandGeometryRestore
 CG4VisCommandGeometrySetColour
 CG4VisCommandGeometrySetColourFunction
 CG4VisCommandGeometrySetDaughtersInvisible
 CG4VisCommandGeometrySetDaughtersInvisibleFunction
 CG4VisCommandGeometrySetForceAuxEdgeVisible
 CG4VisCommandGeometrySetForceAuxEdgeVisibleFunction
 CG4VisCommandGeometrySetForceLineSegmentsPerCircle
 CG4VisCommandGeometrySetForceLineSegmentsPerCircleFunction
 CG4VisCommandGeometrySetForceSolid
 CG4VisCommandGeometrySetForceSolidFunction
 CG4VisCommandGeometrySetForceWireframe
 CG4VisCommandGeometrySetForceWireframeFunction
 CG4VisCommandGeometrySetLineStyle
 CG4VisCommandGeometrySetLineStyleFunction
 CG4VisCommandGeometrySetLineWidth
 CG4VisCommandGeometrySetLineWidthFunction
 CG4VisCommandGeometrySetVisibility
 CG4VisCommandGeometrySetVisibilityFunction
 CG4VisCommandInitialize
 CG4VisCommandList
 CG4VisCommandListManagerList
 CG4VisCommandListManagerSelect
 CG4VisCommandManagerMode
 CG4VisCommandModelCreate
 CG4VisCommandOpen
 CG4VisCommandReviewKeptEvents
 CG4VisCommandSceneActivateModel
 CG4VisCommandSceneAddArrow
 CG4VisCommandSceneAddArrow2D
 CG4VisCommandSceneAddAxes
 CG4VisCommandSceneAddDate
 CG4VisCommandSceneAddDigis
 CG4VisCommandSceneAddEventID
 CG4VisCommandSceneAddFrame
 CG4VisCommandSceneAddGhosts
 CG4VisCommandSceneAddHits
 CG4VisCommandSceneAddLine
 CG4VisCommandSceneAddLine2D
 CG4VisCommandSceneAddLogicalVolume
 CG4VisCommandSceneAddLogo
 CG4VisCommandSceneAddLogo2D
 CG4VisCommandSceneAddMagneticField
 CG4VisCommandSceneAddPSHits
 CG4VisCommandSceneAddScale
 CG4VisCommandSceneAddText
 CG4VisCommandSceneAddText2D
 CG4VisCommandSceneAddTrajectories
 CG4VisCommandSceneAddUserAction
 CG4VisCommandSceneAddVolume
 CG4VisCommandSceneCreate
 CG4VisCommandSceneEndOfEventAction
 CG4VisCommandSceneEndOfRunAction
 CG4VisCommandSceneHandlerAttach
 CG4VisCommandSceneHandlerCreate
 CG4VisCommandSceneHandlerList
 CG4VisCommandSceneHandlerSelect
 CG4VisCommandSceneList
 CG4VisCommandSceneNotifyHandlers
 CG4VisCommandSceneSelect
 CG4VisCommandSetColour
 CG4VisCommandSetLineWidth
 CG4VisCommandSetTextColour
 CG4VisCommandSetTextLayout
 CG4VisCommandSetTouchable
 CG4VisCommandSpecify
 CG4VisCommandsTouchableSet
 CG4VisCommandsViewerSet
 CG4VisCommandVerbose
 CG4VisCommandViewerAddCutawayPlane
 CG4VisCommandViewerChangeCutawayPlane
 CG4VisCommandViewerClear
 CG4VisCommandViewerClearCutawayPlanes
 CG4VisCommandViewerClearTransients
 CG4VisCommandViewerClone
 CG4VisCommandViewerCopyViewFrom
 CG4VisCommandViewerCreate
 CG4VisCommandViewerDefaultHiddenEdge
 CG4VisCommandViewerDefaultStyle
 CG4VisCommandViewerDolly
 CG4VisCommandViewerFlush
 CG4VisCommandViewerList
 CG4VisCommandViewerPan
 CG4VisCommandViewerRebuild
 CG4VisCommandViewerRefresh
 CG4VisCommandViewerReset
 CG4VisCommandViewerSave
 CG4VisCommandViewerScale
 CG4VisCommandViewerSelect
 CG4VisCommandViewerUpdate
 CG4VisCommandViewerZoom
 CG4VisExecutive
 CG4VisExtent
 CG4VisFilterManager
 CG4Visible
 CG4VisListManager
 CG4VisManager
 CG4VisModelManager
 CG4VIsotopeTable
 CG4VisStateDependent
 CG4VIStore
 CG4VisTrajContext
 CG4VITManager
 CG4VITModel
 CG4VITProcess
 CG4VITReactionProcess
 CG4VITRestDiscreteProcessIdentical to G4VRestDiscreteProcess with dependency from G4VITProcess
 CG4VITRestProcessIdentical to G4VRestProcess with dependency from G4VITProcess
 CG4VITTimeStepper
 CG4VKaonBuilder
 CG4VKineticNucleon
 CG4VKinkyStringDecay
 CG4VKM_NuclearDensity
 CG4VLeadingParticleBiasing
 CG4VLevelDensityParameter
 CG4VLongitudinalStringDecay
 CG4VLowEnergyModel
 CG4VMarker
 CG4VMCTruthIO
 CG4VModel
 CG4VModelCommand
 CG4VModelFactory
 CG4VModularPhysicsList
 CG4VMolecularDecayDisplacer
 CG4VMPIseedGenerator
 CG4VMPIsession
 CG4VMPLData
 CG4VMscModel
 CG4VMultiBodyMomDst
 CG4VMultiFragmentation
 CG4VMultipleScattering
 CG4VNestedParameterisation
 CG4VNeutronBuilder
 CG4VNeutronHPEDis
 CG4VNeutronHPEnergyAngular
 CG4VNIELPartition
 CG4VNotifier
 CG4VNtupleManager
 CG4VNuclearDensity
 CG4VNuclearField
 CG4Volant
 CG4VOrgan
 CG4VoxelBox
 CG4VoxelBreastFactory
 CG4VoxelInfo
 CG4VoxelLeftBreast
 CG4VoxelLimits
 CG4VoxelNavigation
 CG4VoxelRightBreast
 CG4VoxelSafety
 CG4VParameterisationBox
 CG4VParameterisationCons
 CG4VParameterisationPara
 CG4VParameterisationPolycone
 CG4VParameterisationPolyhedra
 CG4VParameterisationTrd
 CG4VParameterisationTubs
 CG4VParticipants
 CG4VParticleChange
 CG4VParticlePropertyReporter
 CG4VParticlePropertyRetriever
 CG4VPartonStringModel
 CG4VPCData
 CG4VPDigitIO
 CG4VPDigitsCollectionIO
 CG4VPersistencyManager
 CG4VPEventIO
 CG4VPHitIO
 CG4VPHitsCollectionIO
 CG4VPhononProcess
 CG4VPhotonEvaporation
 CG4VPhysicalVolume
 CG4VPhysicsConstructor
 CG4VPiKBuilder
 CG4VPionBuilder
 CG4VPolarizedCrossSection
 CG4VPreCompoundEmissionFactory
 CG4VPreCompoundFragment
 CG4VPreCompoundModel
 CG4VPreCompoundTransitions
 CG4VPrimaryGenerator
 CG4VPrimitiveScorer
 CG4VProcess
 CG4VProcessPlacer
 CG4VProtonBuilder
 CG4VPVDivisionFactory
 CG4VPVParameterisation
 CG4VRangeToEnergyConverter
 CG4VReadOutGeometry
 CG4VRestContinuousDiscreteProcess
 CG4VRestContinuousProcess
 CG4VRestDiscreteProcess
 CG4VRestProcess
 CG4VRML1File
 CG4VRML1FileSceneHandler
 CG4VRML1FileViewer
 CG4VRML2File
 CG4VRML2FileSceneHandler
 CG4VRML2FileViewer
 Cg4vrmlview
 CG4VRTScanner
 CG4VSampler
 CG4VSamplerConfigurator
 CG4VScatterer
 CG4VScatteringCollision
 CG4VSceneHandler
 CG4VScoreColorMap
 CG4VScoreWriter
 CG4VScoringMesh
 CG4VSDFilter
 CG4VSensitiveDetector
 CG4VShortLivedParticle
 CG4VSolid
 CG4VSplitableHadron
 CG4VStateDependent
 CG4VStatMFEnsemble
 CG4VStatMFMacroCluster
 CG4VSteppingVerbose
 CG4VStringFragmentation
 CG4VThreeBodyAngDst
 CG4VTouchable
 CG4VTrackStateID
 CG4VTrackTerminator
 CG4VTrajectory
 CG4VTrajectoryModel
 CG4VTrajectoryPoint
 CG4VTransactionManager
 CG4VTransitionRadiation
 CG4VTree
 CG4VTreeSceneHandler
 CG4VTreeViewer
 CG4VTRModel
 CG4VTwistedFaceted
 CG4VTwistSurface
 CG4VTwoBodyAngDst
 CG4VUIshell
 CG4VUPLData
 CG4VUPLSplitter
 CG4VUserActionInitialization
 CG4VUserDetectorConstruction
 CG4VUserEventInformation
 CG4VUserParallelWorld
 CG4VUserPhysicsList
 CG4VUserPrimaryGeneratorAction
 CG4VUserPrimaryParticleInformation
 CG4VUserPrimaryVertexInformation
 CG4VUserRegionInformation
 CG4VUserTrackInformation
 CG4VUserVisAction
 CG4VViewer
 CG4VVisCommand
 CG4VVisCommandGeometry
 CG4VVisCommandGeometrySet
 CG4VVisCommandGeometrySetFunction
 CG4VVisCommandScene
 CG4VVisCommandViewer
 CG4VVisManager
 CG4VVolumeMaterialScanner
 CG4VWeightWindowAlgorithm
 CG4VWeightWindowStore
 CG4VWLSTimeGeneratorProfile
 CG4VXResonance
 CG4VXResonanceTable
 CG4VXTRenergyLoss
 CG4WarnPLStatus
 CG4WatcherGun
 CG4WaterStopping
 CG4WeightCutOffConfigurator
 CG4WeightCutOffProcess
 CG4WeightWindowAlgorithm
 CG4WeightWindowBiasing
 CG4WeightWindowConfigurator
 CG4WeightWindowProcess
 CG4WeightWindowStore
 CG4WendtFissionFragmentGenerator
 CG4WentzelOKandVIxSection
 CG4WentzelVIModel
 CG4WentzelVIRelModel
 CG4WentzelVIRelXSection
 CG4WilsonAblationModel
 CG4WilsonAbrasionModel
 CG4WilsonRadius
 CG4WLSTimeGeneratorProfileDelta
 CG4WLSTimeGeneratorProfileExponential
 CG4WorkerRunManager
 CG4WorkerRunManagerKernel
 CG4WorkerThreadAAADEBUG
 CG4WrapperProcess
 CG4XAnnihilationChannel
 CG4XAqmElastic
 CG4XAqmTotal
 CG4XDeltaDeltastarTable
 CG4XDeltaDeltaTable
 CG4XDeltaNstarTable
 CG4XibMinus
 CG4XibZero
 CG4XicPlus
 CG4XicZero
 CG4XiMinus
 CG4XiMinusInelasticProcess
 CG4XiZero
 CG4XiZeroInelasticProcess
 CG4XMesonBaryonElastic
 CG4XmlAnalysisManager
 CG4XmlFileManager
 CG4XmlNtupleDescription
 CG4XmlNtupleManager
 CG4XNDeltastarTable
 CG4XNDeltaTable
 CG4XNNElastic
 CG4XNNElasticLowE
 CG4XNNstarTable
 CG4XNNTotal
 CG4XNNTotalLowE
 CG4XnpElastic
 CG4XnpElasticLowE
 CG4XnpTotal
 CG4XnpTotalLowE
 CG4XPDGElastic
 CG4XPDGTotal
 CG4XpimNTotal
 CG4XpipNTotal
 CG4XrayRayleighModel
 CG4XResonance
 CG4XTRGammaRadModel
 CG4XTRRegularRadModel
 CG4XTRTransparentRegRadModel
 CG4XXX
 CG4XXXFile
 CG4XXXFileSceneHandler
 CG4XXXFileViewer
 CG4XXXSceneHandler
 CG4XXXSG
 CG4XXXSGSceneHandler
 CG4XXXSGViewer
 CG4XXXStored
 CG4XXXStoredSceneHandler
 CG4XXXStoredViewer
 CG4XXXViewer
 CGammaKnifeActionInitialization
 CGammaKnifeController
 CGammaKnifeDetectorConstruction
 CGammaKnifeDetectorMessenger
 CGammaKnifeMessenger
 CGammaKnifeParticles
 CGammaKnifePhysicsList
 CGammaKnifePhysicsListMessenger
 CGammaKnifePrimaryGeneratorAction
 CGammaKnifeRunAction
 CGammaPhysics
 CGammaRayTelAnticoincidenceHit
 CGammaRayTelAnticoincidenceSD
 CGammaRayTelCalorimeterHit
 CGammaRayTelCalorimeterSD
 CGammaRayTelDetectorConstruction
 CGammaRayTelDetectorMessenger
 CGammaRayTelDigi
 CGammaRayTelDigitizer
 CGammaRayTelDigitizerMessenger
 CGammaRayTelDummySD
 CGammaRayTelEMlowePhysics
 CGammaRayTelEMstdPhysics
 CGammaRayTelEventAction
 CGammaRayTelGeneralPhysics
 CGammaRayTelHadronPhysics
 CGammaRayTelIonPhysics
 CGammaRayTelMuonPhysics
 CGammaRayTelParticles
 CGammaRayTelPhysicsList
 CGammaRayTelPhysicsListMessenger
 CGammaRayTelPrimaryGeneratorAction
 CGammaRayTelPrimaryGeneratorMessenger
 CGammaRayTelRunAction
 CGammaRayTelTrackerHit
 CGammaRayTelTrackerROGeometry
 CGammaRayTelTrackerSD
 CGB01ActionInitialization
 CGB01BOptrChangeCrossSection
 CGB01BOptrMultiParticleChangeCrossSection
 CGB01DetectorConstruction
 CGB01PrimaryGeneratorAction
 CGB02ActionInitialization
 CGB02BOptrMultiParticleForceCollision
 CGB02DetectorConstruction
 CGB02PrimaryGeneratorAction
 CGeant4_SoPolyhedron
 CGFlashEnergySpot
 CGFlashHitMaker
 CGFlashHomoShowerParameterisation
 CGFlashParticleBounds
 CGFlashSamplingShowerParameterisation
 CGFlashSamplingShowerTuning
 CGFlashShowerModel
 CGFlashShowerModelMessenger
 CGMocrenDataPrimitive
 CGMocrenDetector
 CGMocrenTrack
 CgString_s
 CGVFlashHomoShowerTuning
 CGVFlashShowerParameterisation
 Cgz_header_s
 Cgz_state
 CgzFile_s
 CH02DetectorConstruction
 CH02EventAction
 CH02Field
 CH02MuonHit
 CH02MuonSD
 CH02PrimaryGeneratorAction
 CH02PrimaryGeneratorMessenger
 CH02SteppingAction
 CHadronPhysicsHIJING
 CHadronPhysicsUrQMD
 CHadrontherapyAnalysisFileMessenger
 CHadrontherapyAnalysisManager
 CHadrontherapyDetectorConstruction
 CHadrontherapyDetectorHit
 CHadrontherapyDetectorMessenger
 CHadrontherapyDetectorROGeometry
 CHadrontherapyDetectorSD
 CHadrontherapyDummySD
 CHadrontherapyEventAction
 CHadrontherapyEventActionMessenger
 CHadrontherapyGeometryController
 CHadrontherapyGeometryMessenger
 CHadrontherapyInteractionParameters
 CHadrontherapyLet
 CHadrontherapyMatrix
 CHadrontherapyModulator
 CHadrontherapyParameterMessenger
 CHadrontherapyParticles
 CHadrontherapyPhysicsList
 CHadrontherapyPhysicsListMessenger
 CHadrontherapyPrimaryGeneratorAction
 CHadrontherapyPrimaryGeneratorMessenger
 CHadrontherapyRunAction
 CHadrontherapyStepMax
 CHadrontherapyStepMaxMessenger
 CHadrontherapySteppingAction
 CHASH_TABLE
 CHASH_TABLE_ITER
 Chepevt
 CHepMCG4AsciiReader
 CHepMCG4AsciiReaderMessenger
 CHepMCG4Interface
 CHepMCG4PythiaInterfaceA generic interface class with Pythia event generator via HepMC
 CHepMCG4PythiaMessenger
 CHepPolyhedron
 CHepPolyhedronBox
 CHepPolyhedronCone
 CHepPolyhedronCons
 CHepPolyhedronEllipsoid
 CHepPolyhedronEllipticalCone
 CHepPolyhedronHype
 CHepPolyhedronPara
 CHepPolyhedronParaboloid
 CHepPolyhedronPcon
 CHepPolyhedronPgon
 CHepPolyhedronProcessor
 CHepPolyhedronSphere
 CHepPolyhedronTorus
 CHepPolyhedronTrap
 CHepPolyhedronTrd1
 CHepPolyhedronTrd2
 CHepPolyhedronTube
 CHepPolyhedronTubs
 CHEPVis_SoMarkerSet
 CHIJINGNeutronBuilder
 CHIJINGProtonBuilder
 CHisto
 CHistoManager
 CHistoManagerMessenger
 CHistoMessenger
 CHookEventProcState
 CHyperRect
 Cinflate_state
 CINIT_ENCODING
 CINT4
 Cinternal_state
 Cinterpolating_function_pCreate a cubic spline interpolation of a set of (x,y) pairsThis is one of the main reasons for c2_function objects to exist
 CIntersection
 Cion
 CIonDPMJETPhysics
 CIonHIJINGPhysics
 CionLet
 CIonUrQMDPhysics
 CIORTAnalysisFileMessenger
 CIORTAnalysisManager
 CIORTDetectorConstruction
 CIORTDetectorHit
 CIORTDetectorMessenger
 CIORTDetectorROGeometry
 CIORTDetectorSD
 CIORTDummySD
 CIORTEventAction
 CIORTEventActionMessenger
 CIORTGeometryController
 CIORTGeometryMessenger
 CIORTInteractionParameters
 CIORTMatrix
 CIORTParameterMessenger
 CIORTParticles
 CIORTPhysicsList
 CIORTPhysicsListMessenger
 CIORTPrimaryGeneratorAction
 CIORTPrimaryGeneratorMessenger
 CIORTRunAction
 CIORTStepMax
 CIORTStepMaxMessenger
 CIORTSteppingAction
 CItem
 Clend_target
 Clin_log_interpolating_function_pA spline with Y transformed into log space.Most useful for functions looking like y=exp(x)
 CLocalINCLIonIonInelasticPhysic
 CLocalIonIonInelasticPhysic
 Clog_lin_interpolating_function_pA spline with X transformed into log space.Most useful for functions looking like y=log(x) or any other function with a huge X dynamic range, and a slowly varying Y
 Clog_log_interpolating_function_pA spline with X and Y transformed into log space.Most useful for functions looking like y=x^n or any other function with a huge X and Y dynamic range
 CLXeActionInitialization
 CLXeDetectorConstruction
 CLXeDetectorMessenger
 CLXeEMPhysics
 CLXeEventAction
 CLXeEventMessenger
 CLXeGeneralPhysics
 CLXeMainVolume
 CLXeMuonPhysics
 CLXePhysicsList
 CLXePMTHit
 CLXePMTSD
 CLXePrimaryGeneratorAction
 CLXeRecorderBase
 CLXeRunAction
 CLXeScintHit
 CLXeScintSD
 CLXeStackingAction
 CLXeSteppingAction
 CLXeSteppingMessenger
 CLXeSteppingVerbose
 CLXeTrackingAction
 CLXeTrajectory
 CLXeUserEventInformation
 CLXeUserTrackInformation
 CLXeWLSFiber
 CLXeWLSSlab
 Cmallinfo
 Cmalloc_chunk
 Cmalloc_params
 Cmalloc_segment
 Cmalloc_state
 Cmalloc_tree_chunk
 CMarshaledExN02TrackerHit
 CMarshaledExN04CalorimeterHit
 CMarshaledExN04MuonHit
 CMarshaledExN04TrackerHit
 CMarshaledG4HCofThisEvent
 CMarshaledG4HitsCollection
 CMarshaledG4String
 CMarshaledG4THitsCollection
 CMarshaledG4VHitsCollection
 CMarshaledObj
 CMaterials
 CmatInfo
 CMCTruthConfig
 CMCTruthEventAction
 CMCTruthManager
 CMCTruthTrackInformation
 CMCTruthTrackingAction
 CMedicalBeam
 CMEMORY_MAPPED_FILE
 CMemorySegment
 CML2PhysicsList
 CML2PhysicsListMessenger
 CML2StepMax
 CML2StepMaxMessenger
 CMSH_IsSameClass
 CMSH_IsSameClass< T, T >
 CMuCrossSections
 CMuNuclearBuilder
 CMyDetectorConstruction
 CMyGamma
 CMyKleinNishinaCompton
 CMyKleinNishinaMessenger
 CMyMaterials
 CMyMollerBhabhaModel
 CNAMED
 CNeutronHPMessenger
 CNeutronHPphysics
 Cnormal_encoding
 CNS_ATT
 COneProcessCount
 Copen_internal_entity
 COpNoviceActionInitialization
 COpNoviceDetectorConstruction
 COpNovicePhysicsList
 COpNovicePhysicsListMessenger
 COpNovicePrimaryGeneratorAction
 COpNovicePrimaryGeneratorMessenger
 COpNoviceRunAction
 COpNoviceStackingAction
 COpNoviceSteppingAction
 COpNoviceSteppingVerbose
 CP6DExtDecayerPhysics
 CP6DPhysicsListThe physics list class with Pythia6 decayer
 CPar01ActionInitialization
 CPar01CalorimeterHit
 CPar01CalorimeterSD
 CPar01DetectorConstruction
 CPar01EMShowerModel
 CPar01EnergySpot
 CPar01ParallelWorldForPion
 CPar01PhysicsList
 CPar01PiModel
 CPar01PionShowerModel
 CPar01PrimaryGeneratorAction
 CParRunManager
 CParticleGunAction
 CParticles
 CPassiveCarbonBeamLine
 CPassiveProtonBeamLine
 CPassiveProtonBeamLineMessenger
 CPerspectiveVisAction
 CPerspectiveVisActionMessenger
 CPhantomConfiguration
 CPhantomSD
 CPhysicsList
 CPhysicsListEMstd
 CPhysicsListMessenger
 CPhysListEmLivermore
 CPhysListEmPenelope
 CPhysListEmPolarized
 CPhysListEmStandard
 CPhysListEmStandard_GS
 CPhysListEmStandard_option0
 CPhysListEmStandard_option3
 CPhysListEmStandard_SS
 CPhysListEmStandard_WVI
 CPhysListEmStandardGS
 CPhysListEmStandardNR
 CPhysListEmStandardSS
 CPhysListEmStandardSSM
 CPhysListEmStandardWVI
 CplotResults
 Cposition
 Cprefix
 CPrimaryGeneratorAction
 CPrimaryGeneratorAction1
 CPrimaryGeneratorAction2
 CPrimaryGeneratorAction3
 CPrimaryGeneratorAction4
 CPrimaryGeneratorMessenger
 CProbabilityBranch
 CProbabilityTree
 Cprolog_state
 CPurgMagAnalysisManager
 CPurgMagDetectorConstruction
 CPurgMagEventAction
 CPurgMagPhysicsList
 CPurgMagPrimaryGeneratorAction
 CPurgMagRunAction
 CPurgMagSteppingAction
 CPurgMagSteppingVerbose
 CPurgMagTabulatedField3D
 CPurgMagTrackingAction
 CPydat1_tPYDAT1 common-block
 CPydat3_tPYDAT3 common-block
 CPyG4ExceptionHandler
 CPyG4MagneticField
 CPyG4ParticleList
 CPyG4VisManager
 CPyjets_tPYJETS common-block
 CPythia6
 CPythia6ParticleStructure for Pythia6 particle properties
 CQBBC
 CQDetectorConstruction
 CQEventAction
 CQMaterials
 CQPhysicsList
 CQPrimaryGeneratorAction
 CRE01ActionInitialization
 CRE01CalorimeterHit
 CRE01CalorimeterParametrisation
 CRE01CalorimeterROGeometry
 CRE01CalorimeterSD
 CRE01DetectorConstruction
 CRE01EventAction
 CRE01Field
 CRE01PhysicsList
 CRE01PrimaryGeneratorAction
 CRE01PrimaryGeneratorMessenger
 CRE01RegionInformation
 CRE01RunAction
 CRE01StackingAction
 CRE01SteppingAction
 CRE01TrackerHit
 CRE01TrackerParametrisation
 CRE01TrackerSD
 CRE01TrackInformation
 CRE01TrackingAction
 CRE01Trajectory
 CRE01UnknownDecayPhysics
 CRE02ActionInitialization
 CRE02DetectorConstruction
 CRE02EventAction
 CRE02NestedPhantomParameterisation
 CRE02PrimaryGeneratorAction
 CRE02PSCellFlux
 CRE02PSEnergyDeposit
 CRE02PSFlatSurfaceCurrent
 CRE02PSFlatSurfaceFlux
 CRE02PSNofStep
 CRE02PSPassageCellFlux
 CRE02Run
 CRE02RunAction
 CRE03ActionInitialization
 CRE03DetectorConstruction
 CRE03PrimaryGeneratorAction
 CRE03UserScoreWriter
 CRE04ActionInitialization
 CRE04DetectorConstruction
 CRE04EventAction
 CRE04ParallelWorldConstruction
 CRE04ParallelWorldParam
 CRE04PrimaryGeneratorAction
 CRE04SteppingAction
 CRE04TrackingAction
 CRE04Trajectory
 CRE04TrajectoryPoint
 CRE05ActionInitialization
 CRE05CalorimeterHit
 CRE05CalorimeterParametrisation
 CRE05CalorimeterROGeometry
 CRE05CalorimeterSD
 CRE05DetectorConstruction
 CRE05DummySD
 CRE05EventAction
 CRE05Field
 CRE05MuonHit
 CRE05MuonSD
 CRE05PrimaryGeneratorAction
 CRE05PrimaryGeneratorMessenger
 CRE05RunAction
 CRE05StackingAction
 CRE05StackingActionMessenger
 CRE05SteppingAction
 CRE05SteppingVerbose
 CRE05TrackerHit
 CRE05TrackerParametrisation
 CRE05TrackerSD
 CRE05TrackingAction
 CRE05WorkerInitialization
 CRE06ActionInitialization
 CRE06DetectorConstruction
 CRE06DetectorMessenger
 CRE06ParallelWorld
 CRE06PhysicsList
 CRE06PrimaryGeneratorAction
 CRE06Run
 CRE06RunAction
 CRE06SteppingVerbose
 CRE06WorkerInitialization
 CReactionProduct4Mom
 Cremove_reference
 Cremove_reference< const T & >
 Cremove_reference< T & >
 CResNode
 CRMC01AdjointEventAction
 CRMC01AnalysisManager
 CRMC01AnalysisManagerMessenger
 CRMC01DetectorConstruction
 CRMC01DetectorMessenger
 CRMC01DoubleWithWeightHit
 CRMC01EventAction
 CRMC01PrimaryGeneratorAction
 CRMC01RunAction
 CRMC01SD
 CRootIORoot IO implementation for the persistency example
 CRun
 CRunAction
 CRunActionMessenger
 CSbPainter
 CSbPainterPS
 CSelectFromKTV
 CSensitiveDetector
 CSensitiveDetectorHit
 CSGeneralData
 CShadowedMarshaledExN02TrackerHit
 CShadowedMarshaledExN04CalorimeterHit
 CShadowedMarshaledExN04MuonHit
 CShadowedMarshaledExN04TrackerHit
 CShadowedMarshaledG4HCofThisEvent
 CShadowedMarshaledG4HitsCollection
 CShadowedMarshaledG4String
 CShadowedMarshaledG4THitsCollection
 CShadowedMarshaledG4VHitsCollection
 CSInputData
 CSoAlternateRepAction
 CSoBox
 CSoCons
 CSoCounterAction
 CSoDetectorTreeKit
 CSoG4LineSet
 CSoG4MarkerSet
 CSoG4Polyhedron
 CSoGL2PSAction
 CSoImageWriter
 CSoStyleCache
 CSoTrap
 CSoTrd
 CSoTubs
 CSoXtInternal
 CSparticle
 CSPrimaryParticle
 CSStartInputData
 CStackingAction
 CStackingMessenger
 CStandaloneVisAction
 Cstatic_tree_desc_s
 CstatusMessageReporting
 CStep
 CStepLimiter
 CStepLimiterBuilder
 CStepLimiterMessenger
 CStepMax
 CStepMaxMessenger
 CSteppingAction
 CSteppingVerbose
 CSTRING_POOL
 CStruct
 CSumCoulombEnergy
 CSvolumeNameId
 CSvoxel
 CTabulatedField3D
 Ctag
 CTAG_NAME
 CTargetSD
 CtbbMasterRunManager
 CtbbTask
 CtbbUserWorkerInitialization
 CtbbWorkerRunManager
 CTFTF_BIC
 CTFTFP_BERT
 CTFTFP_BERT_HP
 CTFTFP_BERT_TRV
 CTG4GenericPhysicsList
 CTheoModelFactory
 CTHIJING
 CTINCLXXPhysicsListHelper
 CTLBE
 Ctpi_channelID_s
 Ctpi_spectralID_s
 Ctpi_spectralIDQualifier_s
 Ctpia_1dData_s
 Ctpia_angular_s
 Ctpia_angularEnergy_s
 Ctpia_angularEnergyBin_s
 Ctpia_channel_s
 Ctpia_data_frame_s
 Ctpia_decayChannel_s
 Ctpia_decaySamplingInfo_s
 Ctpia_depot_s
 Ctpia_EqualProbableBinSpectra_s
 Ctpia_EqualProbableBinSpectrum_s
 Ctpia_Legendre_s
 Ctpia_LegendreBin_s
 Ctpia_map_s
 Ctpia_map_smr_s
 Ctpia_mapEntry_s
 Ctpia_multiplicity_s
 Ctpia_particle_s
 Ctpia_product_s
 Ctpia_productOutgoingData_s
 Ctpia_samplingMethods_s
 Ctpia_target_heated_info_s
 Ctpia_target_heated_s
 Ctpia_target_s
 Ctpia_targetEntry_s
 CTQGS_BIC
 CTQGSP_BERT
 CTQGSP_BERT_HP
 CTQGSP_BIC
 CTQGSP_BIC_HP
 CTQGSP_FTFP_BERT
 CTrack
 CTrackingAction
 CTrackingMessenger
 CTrapSidePlane
 Ctree_desc_s
 CTRTDetectorConstruction
 CTShielding
 CTUrQMD
 CUBBoxStruct
 CUBits
 CUBox
 CUCons
 CUEnclosingCylinder
 CUGenericPolycone
 CUIntersectingCone
 CUltraActionInitializer
 CUltraDetectorConstruction
 CUltraEventAction
 CUltraFresnelLens
 CUltraFresnelLensParameterisation
 CUltraOpticalHit
 CUltraPhysicsList
 CUltraPMTSD
 CUltraPrimaryGeneratorAction
 CUltraRunAction
 Cunknown_encoding
 CUOrb
 CUPolycone
 CUPolyconeHistorical
 CUPolyconeSide
 CUPolyconeSidePrivateSubclass
 CUPolyconeSideRZ
 CUPolyhedra
 CUPolyhedraHistorical
 CUPolyhedraSide
 CUPolyhedraSideRZ
 CUPolyPhiFace
 CUPolyPhiFaceEdge
 CUPolyPhiFaceVertex
 CUReduciblePolygon
 CUReduciblePolygonIterator
 CUrQMDAntiBarionBuilder
 CUrQMDNeutronBuilder
 CUrQMDPiKBuilder
 CUrQMDProtonBuilder
 CUSphere
 CUTet
 CUTransform3D
 CUTrd
 CUTubs
 CUVA_VisAction
 CUVCSGface
 CUVCSGfaceted
 CUVector2
 CUVector3
 CUVoxelBox
 CUVoxelComparator
 CUVoxelInfo
 CUVoxelizer
 CVCall
 CVoxelParam
 CVoxelSD
 CVUFacet
 CVUSolid
 Cw_XBase
 Cw_ZBase
 CWattSpectrumConstants
 CWLSActionInitialization
 CWLSDetectorConstruction
 CWLSDetectorMessenger
 CWLSEventAction
 CWLSEventActionMessenger
 CWLSExtraPhysics
 CWLSMaterials
 CWLSOpticalPhysics
 CWLSPhotonDetHit
 CWLSPhotonDetSD
 CWLSPhysicsList
 CWLSPhysicsListMessengerProvide control of the physics list and cut parameters
 CWLSPrimaryGeneratorAction
 CWLSPrimaryGeneratorMessenger
 CWLSRunAction
 CWLSRunActionMessenger
 CWLSStackingAction
 CWLSStepMax
 CWLSSteppingAction
 CWLSSteppingActionMessenger
 CWLSSteppingVerbose
 CWLSTrackingAction
 CWLSTrajectory
 CWLSTrajectoryPoint
 CWLSUserTrackInformation
 CXAluminumElectrodeHit
 CXAluminumElectrodeSensitivity
 CXBase
 CxData_2d_xindex_y_s
 CxData_attribute_s
 CxData_attributionList_s
 CxData_docInfo_s
 CxData_document_s
 CxData_element_s
 CxData_elementList_s
 CxData_elementListItem_s
 CxData_item_s
 CxData_matrix_rowStartEnd_s
 CxData_matrix_s
 CxData_rootElement_s
 CxData_smr_s
 CxData_text_s
 CxDataType_s
 CXDetectorConstruction
 CXML_cp
 CXML_Encoding
 CXML_Expat_Version
 CXML_Feature
 CXML_Memory_Handling_Suite
 CXML_ParserStruct
 CXML_ParsingStatus
 CxmlTextStruct_s
 CXPhononStackingAction
 CXPhysicsList
 CXPrimaryGeneratorAction
 CXrayFluoDataSet
 CXrayFluoDetectorConstruction
 CXrayFluoDetectorMessenger
 CXrayFluoEventAction
 CXrayFluoEventActionMessenger
 CXrayFluoGeometry
 CXrayFluoHPGeDetectorType
 CXrayFluoHPGeSD
 CXrayFluoMercuryDetectorConstruction
 CXrayFluoMercuryDetectorMessenger
 CXrayFluoMercuryPrimaryGeneratorAction
 CXrayFluoMercuryPrimaryGeneratorMessenger
 CXrayFluoNistMaterials
 CXrayFluoNormalization
 CXrayFluoPhysicsList
 CXrayFluoPhysicsListMessenger
 CXrayFluoPlaneDetectorConstruction
 CXrayFluoPlaneDetectorMessenger
 CXrayFluoPlanePrimaryGeneratorAction
 CXrayFluoPlanePrimaryGeneratorMessenger
 CXrayFluoPrimaryGeneratorAction
 CXrayFluoPrimaryGeneratorMessenger
 CXrayFluoRunAction
 CXrayFluoSD
 CXrayFluoSensorHit
 CXrayFluoSiLiDetectorType
 CXrayFluoSimulation
 CXrayFluoStepMax
 CXrayFluoStepMaxMessenger
 CXrayFluoSteppingAction
 CXrayFluoSteppingVerbose
 CXrayFluoVDetectorType
 CXrayTelAnalysis
 CXrayTelDetectorConstruction
 CXrayTelPhysicsList
 CXrayTelPrimaryGeneratorAction
 CXrayTelRunAction
 CXrayTelStepCut
 CXrayTelSteppingAction
 Cyystype
 Cz_stream_s
 CZAMass
 CZBase
 CZClass
 CZSymbol