KaliVeda
Toolkit for HIC analysis
KVDBSystem Class Reference

Detailed Description

Database class used to store information on different colliding systems studied during an experiment. ,.

A 'system' is a unique combination of projectile, target and beam energy.

Informations on Z & A of projectile and target and beam energy are here (GetZbeam(), GetZtarget(), etc.)

GetTarget() returns a pointer to a KVTarget object describing the physical characteristics of the target for this system : such an object can be used to calculate energy losses of incident charged particles etc. NOTE: if the current run being analysed corresponds to this system, the target of INDRA will have been set using this method. i.e. you can use gIndra->GetTarget() to obtain the KVTarget object of the current run.

GetKinematics() returns a pointer to a KV2Body object which can be used to obtain information on the kinematics of the colliding system. See the KV2Body class for more details. Some of the more commonly used kinematical quantities are also available directly here: GetPtot(), GetZVtot(), GetECM() etc.

Definition at line 52 of file KVDBSystem.h.

#include <KVDBSystem.h>

Inheritance diagram for KVDBSystem:

Public Member Functions

 KVDBSystem ()
 
 KVDBSystem (const Char_t *name)
 
virtual ~ KVDBSystem ()
 
void AddRun (Int_t)
 
void AddRun (KVDBRecord *)
 
Int_t Compare (const TObject *) const
 
UInt_t GetAbeam () const
 
UInt_t GetAproj () const
 
UInt_t GetAtarget () const
 
UInt_t GetAtot () const
 
TString GetBatchName ()
 
TString GetBatchNameWithoutEnergy ()
 
Float_t GetEbeam () const
 
Double_t GetECM () const
 
Float_t GetEproj () const
 
Double_t GetEtot () const
 
KV2BodyGetKinematics ()
 
Int_t GetNumberRuns ()
 
Double_t GetPtot () const
 
TString GetReactionNameWithoutEnergy ()
 
virtual void GetRunList (KVNumberList &) const
 Fills the KVNumberList object with the list of all run numbers associated with this system. More...
 
KVUnownedListGetRuns () const
 Returns a sorted list of all the runs associated with this system. More...
 
KVTargetGetTarget () const
 
Float_t GetTargetThickness () const
 
UInt_t GetZbeam () const
 
UInt_t GetZproj () const
 
UInt_t GetZtarget () const
 .............. inline functions ............... More...
 
UInt_t GetZtot () const
 
Double_t GetZVtot () const
 
Bool_t IsCollision () const
 retourne kTRUE, si le systeme est une collision ie projectile+cible More...
 
virtual void Load (std::istream &)
 
virtual void ls (Option_t *option="*") const
 
virtual void Print (Option_t *option="") const
 
void RemoveAllRuns ()
 
void RemoveRun (Int_t)
 
void RemoveRun (KVDBRecord *)
 
virtual void Save (std::ostream &) const
 
void SetAbeam (UInt_t a)
 
void SetAtarget (UInt_t a)
 
void SetBeam (UInt_t z, UInt_t a, Float_t energy)
 
void SetEbeam (Float_t energy)
 
void SetNumberRuns (Int_t n)
 set number of runs associated to this system More...
 
void SetRuns (KVNumberList &)
 
void SetTarget (KVTarget *targ)
 
void SetZbeam (UInt_t z)
 
void SetZtarget (UInt_t z)
 
- Public Member Functions inherited from KVDBRecord
 KVDBRecord ()
 
 KVDBRecord (const Char_t *name, const Char_t *title="")
 
virtual ~ KVDBRecord ()
 
virtual KVDBKeyAddKey (const Char_t *name, const Char_t *title, Bool_t check=kTRUE)
 
virtual Bool_t AddKey (KVDBKey *key, Bool_t check=kTRUE)
 
virtual Bool_t AddLink (const Char_t *key_name, KVDBRecord *rec, Bool_t linkback=kTRUE)
 
virtual KVDBKeyGetKey (const Char_t *key) const
 
virtual TList * GetKeys () const
 
virtual KVDBRecordGetLink (const Char_t *key, const Char_t *link) const
 Returns the record named "link" in the table named "key". More...
 
virtual KVRListGetLinks (const Char_t *key) const
 Returns the list of records linked to this record in table "key". More...
 
virtual Int_t GetNumber () const
 
virtual KVDBTableGetTable () const
 
virtual void RemoveAllLinks (const Char_t *key)
 Remove all links between this record and the records in the DB table"key_name". More...
 
virtual void RemoveLink (const Char_t *key_name, KVDBRecord *rec, Bool_t linkback=kTRUE)
 Remove the link between this record and the record "rec" in the DB table"key_name". More...
 
virtual void SetNumber (Int_t n)
 
virtual void SetTable (const KVDBTable *table)
 

Private Member Functions

KVUnownedList_GetRuns ()
 
KVDBTableGetRunsTable ()
 

Private Attributes

UInt_t fAbeam
 Mass of the projectile nucleus. More...
 
UInt_t fAtarget
 Mass of the target nucleus. More...
 
KV2BodyfCinema
 used to calculate kinematics of entrance channel More...
 
Float_t fEbeam
 Energy of the beam in MeV/nucleon. More...
 
KVUnownedListfRunlist
 used to store pointer to sorted list of runs More...
 
Int_t fRuns
 temporary variable used to stock number of associated runs More...
 
KVTargetfTarget
 physical target used for experiment run More...
 
UInt_t fZbeam
 charge of the projectile nucleus More...
 
UInt_t fZtarget
 charge of the target nucleus More...
 

Constructor & Destructor Documentation

◆ KVDBSystem() [1/2]

KVDBSystem::KVDBSystem ( )

Definition at line 26 of file KVDBSystem.cpp.

◆ KVDBSystem() [2/2]

KVDBSystem::KVDBSystem ( const Char_t *  name)

Definition at line 40 of file KVDBSystem.cpp.

◆ ~ KVDBSystem()

virtual KVDBSystem::~ KVDBSystem ( )
virtual

Member Function Documentation

◆ _GetRuns()

KVUnownedList * KVDBSystem::_GetRuns ( )
private

"translate" the KVRList returned by GetLinks into a standard TList which can then be sorted (Sort() is not implemented for TRefArray).

Definition at line 213 of file KVDBSystem.cpp.

◆ AddRun() [1/2]

void KVDBSystem::AddRun ( Int_t  run)

Associate the given run with this system. If the run was previously associated with another system, this association will be removed.

Definition at line 465 of file KVDBSystem.cpp.

◆ AddRun() [2/2]

void KVDBSystem::AddRun ( KVDBRecord rec)

Associate the given run with this system. If the run was previously associated with another system, this association will be removed.

Definition at line 434 of file KVDBSystem.cpp.

◆ Compare()

Int_t KVDBSystem::Compare ( const TObject *  obj) const
virtual

Function used to sort lists of systems. Systems are sorted according to the number of the first run in the (sorted) list of runs associated to the system. Systems with lower first run numbers appear earlier in the list.

Reimplemented from KVDBRecord.

Definition at line 185 of file KVDBSystem.cpp.

◆ GetAbeam()

UInt_t KVDBSystem::GetAbeam ( ) const
inline

Definition at line 184 of file KVDBSystem.h.

◆ GetAproj()

UInt_t KVDBSystem::GetAproj ( ) const
inline

Definition at line 194 of file KVDBSystem.h.

◆ GetAtarget()

UInt_t KVDBSystem::GetAtarget ( ) const
inline

Definition at line 164 of file KVDBSystem.h.

◆ GetAtot()

UInt_t KVDBSystem::GetAtot ( ) const
inline

Definition at line 174 of file KVDBSystem.h.

◆ GetBatchName()

TString KVDBSystem::GetBatchName ( )

Gives name of system in compact form with all (unix-)illegal characters replaced by '_'. Can be used for naming batch jobs, files, etc.

Definition at line 578 of file KVDBSystem.cpp.

◆ GetBatchNameWithoutEnergy()

TString KVDBSystem::GetBatchNameWithoutEnergy ( )

Gives name of system in compact form with all (unix-)illegal characters replaced by '_'. Can be used for naming batch jobs, files, etc. Only symbols of projectile and target are used, not the beam energy

Definition at line 611 of file KVDBSystem.cpp.

◆ GetEbeam()

Float_t KVDBSystem::GetEbeam ( ) const
inline

Definition at line 199 of file KVDBSystem.h.

◆ GetECM()

Double_t KVDBSystem::GetECM ( ) const

Returns total available (CM) kinetic energy of entrance channel corresponding to system Units are MeV

Definition at line 167 of file KVDBSystem.cpp.

◆ GetEproj()

Float_t KVDBSystem::GetEproj ( ) const
inline

Definition at line 204 of file KVDBSystem.h.

◆ GetEtot()

Double_t KVDBSystem::GetEtot ( ) const

Returns total (mass + kinetic) energy of entrance channel corresponding to system Units are MeV

Definition at line 151 of file KVDBSystem.cpp.

◆ GetKinematics()

KV2Body * KVDBSystem::GetKinematics ( )

Create (if it doesn't already exist) and return pointer to a KV2Body object initialised with the entrance channel corresponding to this system. Use this to obtain information such as the recoil velocity of the CM, available energy, etc. (see KV2Body).

If no projectile and/or target are defined for the system, we return 0x0.

Definition at line 80 of file KVDBSystem.cpp.

◆ GetNumberRuns()

Int_t KVDBSystem::GetNumberRuns ( )
inline

get number of runs previously set by SetNumberRuns. WARNING: for total number of runs associated to this system in database, use GetRuns()->GetEntries()

Definition at line 140 of file KVDBSystem.h.

◆ GetPtot()

Double_t KVDBSystem::GetPtot ( ) const

Returns momentum component parallel to beam axis of projectile nucleus in laboratory frame Units are MeV/c

Definition at line 135 of file KVDBSystem.cpp.

◆ GetReactionNameWithoutEnergy()

TString KVDBSystem::GetReactionNameWithoutEnergy ( )

Returns name of reaction without the beam energy i.e. just projectile + target.

E.g. for system "129Xe + natSn 50 MeV/A" we return "129Xe + natSn"

Definition at line 642 of file KVDBSystem.cpp.

◆ GetRunList()

void KVDBSystem::GetRunList ( KVNumberList list) const
virtual

Fills the KVNumberList object with the list of all run numbers associated with this system.

Definition at line 234 of file KVDBSystem.cpp.

◆ GetRuns()

KVUnownedList* KVDBSystem::GetRuns ( ) const
inline

Returns a sorted list of all the runs associated with this system.

Definition at line 117 of file KVDBSystem.h.

◆ GetRunsTable()

KVDBTable * KVDBSystem::GetRunsTable ( )
private

Deduce path to runs table in database from full path to parent table of this record. The systems are stored in a table called "Systems" The runs are stored in a table called "Runs" Therefore if we take the full path to the Systems table and replace Systems with Runs, we can then use gROOT->FindObject to get the pointer to the Runs table.

Definition at line 558 of file KVDBSystem.cpp.

◆ GetTarget()

KVTarget* KVDBSystem::GetTarget ( ) const
inline

Definition at line 79 of file KVDBSystem.h.

◆ GetTargetThickness()

Float_t KVDBSystem::GetTargetThickness ( ) const
inline

Definition at line 209 of file KVDBSystem.h.

◆ GetZbeam()

UInt_t KVDBSystem::GetZbeam ( ) const
inline

Definition at line 179 of file KVDBSystem.h.

◆ GetZproj()

UInt_t KVDBSystem::GetZproj ( ) const
inline

Definition at line 189 of file KVDBSystem.h.

◆ GetZtarget()

UInt_t KVDBSystem::GetZtarget ( ) const
inline

.............. inline functions ...............

Definition at line 159 of file KVDBSystem.h.

◆ GetZtot()

UInt_t KVDBSystem::GetZtot ( ) const
inline

Definition at line 169 of file KVDBSystem.h.

◆ GetZVtot()

Double_t KVDBSystem::GetZVtot ( ) const

Returns product of atomic number and velocity component parallel to beam axis of projectile nucleus in laboratory frame Units are cm/ns (velocity units)

Definition at line 119 of file KVDBSystem.cpp.

◆ IsCollision()

Bool_t KVDBSystem::IsCollision ( ) const

retourne kTRUE, si le systeme est une collision ie projectile+cible

Definition at line 105 of file KVDBSystem.cpp.

◆ Load()

void KVDBSystem::Load ( std::istream &  )
virtual

Read and set informations on system in the format used in Systems.dat files:

+155Gd + 238U 36 MeV/A '+' followed by name of system 155 64 238 92 36.0 Aproj Zproj Atarg Ztarg Ebeam Target: 3 0.0 target with 3 layers, angle 0 degrees C 0.02 1st layer : carbon, 20 ug/cm2 238U 0.1 2nd layer : uranium-238, 100 ug/cm2 C 0.023 3rd layer : carbon, 23 ug/cm2 Runs: 770-804 list of runs in KVNumberList format

Definition at line 302 of file KVDBSystem.cpp.

◆ ls()

void KVDBSystem::ls ( Option_t *  option = "*") const
virtual

Reimplemented from KVDBRecord.

Definition at line 542 of file KVDBSystem.cpp.

◆ Print()

void KVDBSystem::Print ( Option_t *  option = "") const
virtual

Reimplemented from KVDBRecord.

Definition at line 519 of file KVDBSystem.cpp.

◆ RemoveAllRuns()

void KVDBSystem::RemoveAllRuns ( )

Unassociate all runs from this system. Cross-reference links to this system are removed from the runs at the same time.

Definition at line 508 of file KVDBSystem.cpp.

◆ RemoveRun() [1/2]

void KVDBSystem::RemoveRun ( Int_t  run)

Unassociate the given run from this system. Cross-reference link to this system is removed from the run at the same time.

Definition at line 494 of file KVDBSystem.cpp.

◆ RemoveRun() [2/2]

void KVDBSystem::RemoveRun ( KVDBRecord run)

Unassociate the given run from this system. Cross-reference link to this system is removed from the run at the same time.

Definition at line 480 of file KVDBSystem.cpp.

◆ Save()

void KVDBSystem::Save ( std::ostream &  ) const
virtual

Write informations on system in the format used in Systems.dat files:

+155Gd + 238U 36 MeV/A '+' followed by name of system 155 64 238 92 36.0 Aproj Zproj Atarg Ztarg Ebeam Target: 3 0.0 target with 3 layers, angle 0 degrees C 0.02 1st layer : carbon, 20 g/cm2 238U 0.1 2nd layer : uranium-238, 100 g/cm2 C 0.023 3rd layer : carbon, 23 g/cm2 Runs: 770-804 list of runs in KVNumberList format

Definition at line 259 of file KVDBSystem.cpp.

◆ SetAbeam()

void KVDBSystem::SetAbeam ( UInt_t  a)
inline

Definition at line 229 of file KVDBSystem.h.

◆ SetAtarget()

void KVDBSystem::SetAtarget ( UInt_t  a)
inline

Definition at line 219 of file KVDBSystem.h.

◆ SetBeam()

void KVDBSystem::SetBeam ( UInt_t  z,
UInt_t  a,
Float_t  energy 
)
inline

Definition at line 239 of file KVDBSystem.h.

◆ SetEbeam()

void KVDBSystem::SetEbeam ( Float_t  energy)
inline

Definition at line 234 of file KVDBSystem.h.

◆ SetNumberRuns()

void KVDBSystem::SetNumberRuns ( Int_t  n)
inline

set number of runs associated to this system

Definition at line 133 of file KVDBSystem.h.

◆ SetRuns()

void KVDBSystem::SetRuns ( KVNumberList rl)

Associate this system with the runs in the list Any previously associated runs are first removed (links in the runs will be removed too)

Definition at line 393 of file KVDBSystem.cpp.

◆ SetTarget()

void KVDBSystem::SetTarget ( KVTarget targ)
inline

Definition at line 83 of file KVDBSystem.h.

◆ SetZbeam()

void KVDBSystem::SetZbeam ( UInt_t  z)
inline

Definition at line 224 of file KVDBSystem.h.

◆ SetZtarget()

void KVDBSystem::SetZtarget ( UInt_t  z)
inline

Definition at line 214 of file KVDBSystem.h.

Member Data Documentation

◆ fAbeam

UInt_t KVDBSystem::fAbeam
private

Mass of the projectile nucleus.

Definition at line 65 of file KVDBSystem.h.

◆ fAtarget

UInt_t KVDBSystem::fAtarget
private

Mass of the target nucleus.

Definition at line 67 of file KVDBSystem.h.

◆ fCinema

KV2Body* KVDBSystem::fCinema
private

used to calculate kinematics of entrance channel

Definition at line 56 of file KVDBSystem.h.

◆ fEbeam

Float_t KVDBSystem::fEbeam
private

Energy of the beam in MeV/nucleon.

Definition at line 68 of file KVDBSystem.h.

◆ fRunlist

KVUnownedList* KVDBSystem::fRunlist
private

used to store pointer to sorted list of runs

Definition at line 60 of file KVDBSystem.h.

◆ fRuns

Int_t KVDBSystem::fRuns
private

temporary variable used to stock number of associated runs

Definition at line 61 of file KVDBSystem.h.

◆ fTarget

KVTarget* KVDBSystem::fTarget
private

physical target used for experiment run

Definition at line 58 of file KVDBSystem.h.

◆ fZbeam

UInt_t KVDBSystem::fZbeam
private

charge of the projectile nucleus

Definition at line 64 of file KVDBSystem.h.

◆ fZtarget

UInt_t KVDBSystem::fZtarget
private

charge of the target nucleus

Definition at line 66 of file KVDBSystem.h.