Skip to content
Snippets Groups Projects
Commit bd67b2c1 authored by Stephen A. Wood's avatar Stephen A. Wood
Browse files

Add array capability to THcParmList::LoadValues

Use DBRequest inside of loops over planes, using Form
to construct variables names that have the plane lable in them
(e.g. 1x, 1y, 2x, 2y)
parent cf59729c
No related branches found
No related tags found
No related merge requests found
...@@ -292,27 +292,53 @@ Int_t THcHodoscope::ReadDatabase( const TDatime& date ) ...@@ -292,27 +292,53 @@ Int_t THcHodoscope::ReadDatabase( const TDatime& date )
Int_t plen=strlen(parname); Int_t plen=strlen(parname);
fNPaddle = new Int_t [fNPlanes]; fNPaddle = new Int_t [fNPlanes];
DefineArray("scin_%s_nr",fPlaneNames,fNPlanes,&fNPaddle[0]); fSpacing = new Double_t [fNPlanes];
fCenter = new Double_t* [fNPlanes];
// An alternate way to get these variables
// Can add Xscin_P_center when LoadParmValues supports arrays
prefix[0]=tolower(GetApparatus()->GetName()[0]);
//
prefix[1]='\0';
if (fDebug>=1) cout <<"Testing scin_nr ";
for(Int_t i=0;i<fNPlanes;i++) { for(Int_t i=0;i<fNPlanes;i++) {
if (fDebug>=1) cout << " "<<fNPaddle[i];
DBRequest list[]={
{Form("scin_%s_nr",fPlaneNames[i]), &fNPaddle[i], kInt},
{0}
};
gHcParms->LoadParmValues((DBRequest*)&list,prefix);
} }
if (fDebug>=1) cout <<endl;
fSpacing = new Double_t [fNPlanes];
DefineArray("scin_%s_spacing",fPlaneNames,fNPlanes,&fSpacing[0]);
if (fDebug>=1) cout <<"Testing scin_spacing ";
for(Int_t i=0;i<fNPlanes;i++) { for(Int_t i=0;i<fNPlanes;i++) {
if (fDebug>=1) cout << " " << fSpacing[i]; fCenter[i] = new Double_t[fNPaddle[i]];
DBRequest list[]={
{Form("scin_%s_spacing",fPlaneNames[i]), &fSpacing[i], kDouble},
{Form("scin_%s_center",fPlaneNames[i]), fCenter[i], kDouble, fNPaddle[i]},
{0}
};
gHcParms->LoadParmValues((DBRequest*)&list,prefix);
} }
if (fDebug>=1) cout << endl;
if(fDebug>=1) {
cout << "Plane: " << " nr spacing" << endl;
for(Int_t i=0;i<fNPlanes;i++) {
cout << fPlaneNames[i] << " " << fNPaddle[i] << " " << fSpacing[i] <<endl;
for(Int_t ip=0;ip<fNPaddle[i];ip++) {
cout << " " << fCenter[i][ip];
}
cout << endl;
}
}
#if 0
fCenter = new Double_t* [fNPlanes]; fCenter = new Double_t* [fNPlanes];
for(Int_t i=0;i<fNPlanes;i++) { for(Int_t i=0;i<fNPlanes;i++) {
parname[plen] = '\0'; parname[plen] = '\0';
strcat(parname,fPlaneNames[i]); strcat(parname,fPlaneNames[i]);
strcat(parname,"_center"); strcat(parname,"_center");
cout << parname << endl;
Double_t* p = (Double_t *)gHcParms->Find(parname)->GetValuePointer(); Double_t* p = (Double_t *)gHcParms->Find(parname)->GetValuePointer();
fCenter[i] = new Double_t [fNPaddle[i]]; fCenter[i] = new Double_t [fNPaddle[i]];
cout << parname; cout << parname;
...@@ -322,8 +348,7 @@ Int_t THcHodoscope::ReadDatabase( const TDatime& date ) ...@@ -322,8 +348,7 @@ Int_t THcHodoscope::ReadDatabase( const TDatime& date )
} }
if (fDebug>=1) cout << endl; if (fDebug>=1) cout << endl;
} }
#endif
// GN added // GN added
// reading variables from *hodo.param // reading variables from *hodo.param
prefix[1]='\0'; prefix[1]='\0';
......
...@@ -365,12 +365,10 @@ Int_t THcParmList::LoadParmValues(const DBRequest* list, const char* prefix) ...@@ -365,12 +365,10 @@ Int_t THcParmList::LoadParmValues(const DBRequest* list, const char* prefix)
// it is an array, use the appropriateinterface // it is an array, use the appropriateinterface
switch (ti->type) { switch (ti->type) {
case (kDouble) : case (kDouble) :
// this_cnt = GetArray(system,ti->name,static_cast<Double_t*>(ti->var), this_cnt = GetArray(key,static_cast<Double_t*>(ti->var),ti->nelem);
// ti->expected,date);
break; break;
case (kInt) : case (kInt) :
// this_cnt = GetArray(system,ti->name,static_cast<Int_t*>(ti->var), this_cnt = GetArray(key,static_cast<Int_t*>(ti->var),ti->nelem);
//ti->expected,date);
break; break;
default: default:
Error("THcParmList","Invalid type to read %s",key); Error("THcParmList","Invalid type to read %s",key);
...@@ -412,6 +410,54 @@ Int_t THcParmList::LoadParmValues(const DBRequest* list, const char* prefix) ...@@ -412,6 +410,54 @@ Int_t THcParmList::LoadParmValues(const DBRequest* list, const char* prefix)
return cnt; return cnt;
} }
// READING AN ARRAY INTO A C-style ARRAY
//_____________________________________________________________________________
Int_t THcParmList::GetArray(const char* attr, Int_t* array, Int_t size)
{
// Read in a set of Int_t's in to a C-style array.
return ReadArray(attr,array,size);
}
//_____________________________________________________________________________
Int_t THcParmList::GetArray(const char* attr, Double_t* array, Int_t size)
{
// Read in a set of Double_t's in to a vector.
return ReadArray(attr,array,size);
}
//_____________________________________________________________________________
template<class T>
Int_t THcParmList::ReadArray(const char* attrC, T* array, Int_t size)
{
// Copy values from parameter store to array
// No resizing is done, so only 'size' elements may be stored.
Int_t cnt=0;
THaVar *var = Find(attrC);
if(!var) return(cnt);
VarType ty = var->GetType();
if( ty != kInt && ty != kDouble) {
cout << "*** ERROR: " << attrC << " has unsupported type " << ty << endl;
return(cnt);
}
Int_t sz = var->GetLen();
const void *vp = var->GetValuePointer();
if(size != sz) {
cout << "*** WARNING: requested " << size << " elements of " << attrC <<
" which has length " << sz << endl;
}
if(size<sz) sz = size;
for(cnt=0;cnt<sz;cnt++) {
if(ty == kInt) {
array[cnt] = ((Int_t*)vp)[cnt];
} else
array[cnt] = ((Double_t*)vp)[cnt];
}
return(cnt);
}
//_____________________________________________________________________________ //_____________________________________________________________________________
void THcParmList::PrintFull( Option_t* option ) const void THcParmList::PrintFull( Option_t* option ) const
{ {
......
...@@ -37,10 +37,16 @@ public: ...@@ -37,10 +37,16 @@ public:
Int_t LoadParmValues(const DBRequest* list, const char* prefix=""); // assign values to the variables in list Int_t LoadParmValues(const DBRequest* list, const char* prefix=""); // assign values to the variables in list
Int_t GetArray(const char* attr, Int_t* array, Int_t size);
Int_t GetArray(const char* attr, Double_t* array, Int_t size);
private: private:
THaTextvars* TextList; THaTextvars* TextList;
template<class T>
Int_t ReadArray(const char* attrC, T* array, Int_t size);
protected: protected:
ClassDef(THcParmList,0) // List of analyzer global parameters ClassDef(THcParmList,0) // List of analyzer global parameters
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment