KaliVeda
1.12/06
Heavy-Ion Analysis Toolkit
|
Run-dependant KVTGIDManager.
Created by KVClassFactory on Thu Oct 11 11:51:14 2012 Author: Guilain Ademard
As KVTGIDManager, this class handles a set of Tassan-Got functional-based identifications (KVTGID objects) for use by KVIDTelescope. However, it allows to load the identification functions associated to a given run. To do that, you can remove all identification functions loaded in the KVIDTelescopes (which inherits from KVRTGIDManager) with the method RemoveAllTGID(). Then use the static function SetIDFuncInTelescopes(run) to load the functions, which are valid for the given run, in the KVIDTelescope associated to these functions. See the following exemple:
Definition at line 37 of file KVRTGIDManager.h.
Public Member Functions | |
KVRTGIDManager () | |
virtual | ~KVRTGIDManager () |
virtual void | AddTGID (KVTGID *) |
virtual KVTGID * | GetTGID (const Char_t *idt_name, const Char_t *id_type, const Char_t *grid_type) |
virtual void | RemoveAllTGID () |
Remove all identification objects of the local list. More... | |
virtual void | RemoveTGID (const Char_t *name) |
Remove the identification object with name from the local list. More... | |
Public Member Functions inherited from KVTGIDManager | |
KVTGIDManager () | |
Default constructor. More... | |
virtual | ~ KVTGIDManager () |
Double_t | GetIDmax () const |
const KVList & | GetListOfIDFunctions () const |
virtual Int_t | GetStatus () const |
virtual const Char_t * | GetStatusString (ETGIDMStatus s=kCurrentStatus) const |
KVTGID * | GetTGID (const Char_t *name) |
Retrieve the identification object with name. More... | |
virtual KVTGIDGrid * | GetTGIDGrid (const Char_t *idt_name, const Char_t *id_type, const Char_t *grid_type, Double_t xmax, Double_t xmin=0., Int_t ID_min=0, Int_t ID_max=0, Int_t npoints=100, Bool_t logscale=kFALSE) |
virtual KVTGIDGrid * | GetTGIDGrid (const Char_t *tgid_name, Double_t xmax, Double_t xmin=0., Int_t ID_min=0, Int_t ID_max=0, Int_t npoints=100, Bool_t logscale=kFALSE) |
virtual KVTGIDGrid * | GetTGIDGrid (KVTGID *tgid, Double_t xmax, Double_t xmin=0., Int_t ID_min=0, Int_t ID_max=0, Int_t npoints=100, Bool_t logscale=kFALSE) |
const Char_t * | GetTGIDName (const Char_t *idt_name, const Char_t *id_type, const Char_t *grid_type) |
virtual Double_t | IdentA (const Char_t *, Double_t, Double_t, Double_t &funLTG, const Char_t *grid_type, Int_t Z) |
virtual Double_t | IdentZ (const Char_t *, Double_t, Double_t, Double_t &funLTG, const Char_t *grid_type) |
void | SetStatus (ETGIDMStatus s) |
Static Public Member Functions | |
static void | AddTGIDToGlobalList (KVTGID *) |
----— static methods -----------------------—// More... | |
static void | BuildGridForAllTGID (const Char_t *idtype="", Double_t xmin=0., Double_t xmax=4096., Int_t ID_min=0, Int_t ID_max=0, Int_t npoints=50, Bool_t logscale=kTRUE) |
static void | Clear () |
static void | DeleteTGID (const Char_t *name) |
static KVList * | GetGlobalListOfIDFunctions () |
static TCollection * | GetIDTelescopesForTGID (KVTGID *) |
static Bool_t | GetTGIDfromIDGridManager (TList *tgid_list) |
static Bool_t | ReadAsciiFile (const Char_t *filename) |
static void | SetIDFuncInTelescopes (UInt_t run) |
static Int_t | UpdateListFromIDGridManager () |
static Int_t | WriteAsciiFile (const Char_t *filename, const TCollection *selection=0, Bool_t update=kTRUE) |
Protected Member Functions | |
virtual void | SetTGID (KVTGID *) |
Add an identification object to the local list (fIDList). More... | |
Static Protected Attributes | |
static KVList * | fIDGlobalList = NULL |
Global list of TGID of all the KVRTGIDManager. More... | |
Additional Inherited Members | |
Public Types inherited from KVTGIDManager | |
enum | ETGIDMStatus { kStatus_OK , kStatus_noTGID , kStatus_OutOfIDRange , kStatus_ZtooSmall , kStatus_ZtooLarge , kCurrentStatus } |
status codes for IdentZ/IdentA More... | |
Protected Attributes inherited from KVTGIDManager | |
Double_t | fID_max |
maximum ID of all TGID objects More... | |
KVList | fIDList |
KVTGID objects for identifications. More... | |
Int_t | fStatus |
transient member used to hold status of last call to IdentZ/IdentA More... | |
#include <KVRTGIDManager.h>
KVRTGIDManager::KVRTGIDManager | ( | ) |
Default constructor The list fIDList is not owner anymore. Now the identification function belong to fIDGlobalList, the list return by GetListOfIDFunctions() is not the owner of identification functions anymore.
Definition at line 27 of file KVRTGIDManager.cpp.
|
virtual |
Destructor Remove the global list of identification functions if it is empty.
Definition at line 46 of file KVRTGIDManager.cpp.
Add an identification object to the global list (fIDGlobalList). The identification object is not added to the local list (fIDList) in this method anymore. To do that, see SetIDFunctionInTelescopes) This method just calls AddTGIDToGlobalList(KVTGID *);
Reimplemented from KVTGIDManager.
Definition at line 62 of file KVRTGIDManager.cpp.
----— static methods -----------------------—//
Add an identification object to the global list (fIDGlobalList).
Definition at line 273 of file KVRTGIDManager.cpp.
|
static |
Build a grid (KVTGIDGrid) for all the identification functions of the global list. The new grids are automatically loaded in gIDGridManager and are visible in the Grid Manager GUI. If a function is already associated to a grid then a new grid is not built. No grid is built for copies of KVTGID's made in the method ReadAsciiFile(...).
Inputs: idtype - type of the identification for which the grids will be built (CI-SI, SI-CSI, CI-CSI, SI75-SILI, ...). By default, all grids are built xmin xmax ID_min ID_max npoints logscale - see KVTGIDGrid::Generate(...)
Definition at line 306 of file KVRTGIDManager.cpp.
|
static |
Delete the global list of identification objects. Since this list is owner then all listed identification objects are deleted.
Definition at line 381 of file KVRTGIDManager.cpp.
Definition at line 157 of file KVRTGIDManager.cpp.
|
inlinestatic |
Definition at line 61 of file KVRTGIDManager.h.
|
static |
Return TList of all ID telescopes for which fit is valid. Returns 0 if no telescopes are defined, or if gMultiDetArray object is not defined (we search for the telescopes using their name and gMultiDetArray->GetIDTelescope()). WARNING: DELETE this list after use !!!
Definition at line 522 of file KVRTGIDManager.cpp.
|
virtual |
Overrides the same method of KVTGIDManager. This method Retrieve the identification object using: id_type = type of identification ("Z", "A", "A_for_Z=3", etc.) grid_type = type of identification grid ("GG", "PG1", etc.) but the name of ID telescope is not used anymore because identification object can be associated to several ID telescopes. If any object is found then it returns the first:
Reimplemented from KVTGIDManager.
Definition at line 84 of file KVRTGIDManager.cpp.
Fill a sublist of TGID found in object inheriting from KVTGIDGrid in gIDGridManager. Return kFALSE if gIDGridManager is not defined.
Definition at line 178 of file KVRTGIDManager.cpp.
Read file, create KVTGID fits corresponding to information in file. Comment line beginning by '#' is skipped.
Definition at line 209 of file KVRTGIDManager.cpp.
|
virtual |
Remove all identification objects of the local list.
Reimplemented from KVTGIDManager.
Definition at line 261 of file KVRTGIDManager.cpp.
Remove the identification object with name from the local list.
Reimplemented from KVTGIDManager.
Definition at line 136 of file KVRTGIDManager.cpp.
For each identification function of the global list which is valid for this run, we add it in the associated telescope which have to inherits from KVTGIDManager and from a KVIDTelescope.
Definition at line 395 of file KVRTGIDManager.cpp.
Add an identification object to the local list (fIDList).
Definition at line 120 of file KVRTGIDManager.cpp.
|
static |
Returns the number of identification functions found in grids of gIDGridManager which were missing in the the global list and updates this list.
Definition at line 432 of file KVRTGIDManager.cpp.
|
static |
Write identification functions in file 'filename'. If selection=0 (default), write all grids. If update=true, call UpdateListFromIDGridManager() before writing If selection!=0, write only grids in list. Returns number of functions written in file.
Definition at line 468 of file KVRTGIDManager.cpp.
|
staticprotected |
Global list of TGID of all the KVRTGIDManager.
Definition at line 40 of file KVRTGIDManager.h.