39 Bool_t local_debug =
false;
50 std::string key, value;
52 if ( value.size() > 0) {
70 else if (key ==
"param" ) {
75 else if (key ==
"eventcut") {
80 else if (key ==
"geom" ) {
85 else if (key ==
"cross" ) {
90 else if (key ==
"mask") {
133 if (! parent)
return;
136 for (
size_t i = 0; i <
fArrays.size(); i++) {
138 if (
fArrays.at(i) == parent)
return;
218 QwError <<
"Could not publish variable " << name
240 for (
size_t i=0 ; i < myvec.size(); i++ ){
241 if (myvec[i]==value){
262 for (Int_t i=0; i<roc_index; i++){
285 std::vector<UInt_t> tmpvec(1,bank_id);
289 if (bank_index==-1) {
293 QwError << std::hex <<
"VQwSubsystem::RegisterROCNumber: "
294 <<
"This subbank (0x" << bank_id <<
") "
295 <<
"in this ROC (0x" << roc_id <<
") "
296 <<
"has already been registered!"
319 QwError << std::hex <<
"VQwSubsystem::RegisterSubbank: "
320 <<
"This subbank (" << bank_id <<
") "
321 <<
"does not have an associated ROC! "
322 <<
"Add a 'ROC=#' line to the map file."
333 std::cout <<
"Name of this subsystem: " <<
fSystemName << std::endl;
334 for (
size_t roc_index = 0; roc_index <
fROC_IDs.size(); roc_index++) {
335 std::cout <<
"ROC" << std::dec <<
fROC_IDs[roc_index] <<
": ";
336 for (
size_t bank_index = 0; bank_index <
fBank_IDs[roc_index].size(); bank_index++)
337 std::cout << std::hex <<
"0x" <<
fBank_IDs[roc_index][bank_index] <<
" ";
338 std::cout << std::dec << std::endl;
340 for (
size_t array = 0; array <
fArrays.size(); array++)
341 std::cout <<
"in array " << std::hex <<
fArrays.at(array) << std::dec << std::endl;
369 Bool_t local_debug =
false;
372 <<
" uses the following map files:" <<
QwLog::endl;
379 for (std::map<TString,TString>::const_iterator ii =
fDetectorMaps.begin();
383 TString name = (*ii).first;
384 TString all = (*ii).second;
Int_t GetSubbankIndex() const
#define QwMessage
Predefined log drain for regular messages.
std::map< TString, TString > fDetectorMaps
Definition of the pure virtual base class of all subsystems.
virtual VQwSubsystem * GetSubsystemByName(const TString &name)
Get the subsystem with the specified name.
VQwSubsystem * GetSibling(const std::string &name) const
Get the sibling with specified name.
virtual std::vector< TString > GetParamFileNameList()
void SetParent(QwSubsystemArray *parent)
Set the parent of this subsystem to the specified array.
static UInt_t GetUInt(const TString &varvalue)
std::vector< QwSubsystemArray * > fArrays
Vector of pointers to subsystem arrays that contain this subsystem.
virtual Int_t LoadChannelMap(TString mapfile)=0
Mandatory map file definition.
Bool_t PublishInternalValue(const TString name, const TString desc, const VQwSubsystem *subsys, const VQwHardwareChannel *element)
Publish the value name with description from a subsystem in this array.
Bool_t HasVariablePair(const std::string &separatorchars, std::string &varname, std::string &varvalue)
void TrimComment(const char commentchar)
Bool_t RequestExternalValue(const TString &name, VQwHardwareChannel *value) const
Retrieve the variable name from other subsystem arrays.
virtual Int_t LoadDetectorMaps(QwParameterFile &file)
Parse parameter file to find the map files.
virtual std::map< TString, TString > GetDetectorMaps()
virtual Int_t LoadEventCuts(TString mapfile)
Optional event cut file.
virtual Int_t LoadCrosstalkDefinition(TString mapfile)
Optional crosstalk definition.
Int_t FindIndex(const std::vector< UInt_t > &myvec, const UInt_t value) const
virtual VQwSubsystem & operator=(VQwSubsystem *value)
Assignment Note: Must be called at the beginning of all subsystems routine call to operator=(VQwSubsy...
A logfile class, based on an identical class in the Hermes analyzer.
TString fSystemName
Name of this subsystem.
void SetEventTypeMask(const UInt_t mask)
Set event type mask.
virtual void PrintInfo() const
Print some information about the subsystem.
The pure virtual base class of all subsystems.
std::vector< std::vector< UInt_t > > fBank_IDs
Vector of Bank IDs per ROC ID associated with this subsystem.
Int_t fCurrentROC_ID
ROC ID that is currently being processed.
Int_t RegisterSubbank(const UInt_t bank_id)
Tell the object that it will decode data from this sub-bank in the ROC currently open for registratio...
virtual Int_t RegisterROCNumber(const UInt_t roc_id, const UInt_t bank_id=0)
Tell the object that it will decode data from this ROC and sub-bank.
virtual Int_t LoadGeometryDefinition(TString mapfile)
Optional geometry definition.
static std::ostream & endl(std::ostream &)
End of the line.
std::vector< UInt_t > fROC_IDs
Vector of ROC IDs associated with this subsystem.
Bool_t RequestExternalValue(const TString &name, VQwHardwareChannel *value) const
Request a named value which is owned by an external subsystem; the request will be handled by the par...
void TrimWhitespace(TString::EStripType head_tail=TString::kBoth)
QwSubsystemArray * GetParent(const unsigned int parent=0) const
Get the parent of this subsystem.
Bool_t PublishInternalValue(const TString &name, const TString &desc, const VQwHardwareChannel *value) const
Publish a variable name to the parent subsystem array.
std::vector< TString > fDetectorMapsNames
virtual Int_t LoadInputParameters(TString mapfile)=0
Mandatory parameter file definition.
Int_t fCurrentBank_ID
Bank ID that is currently being processed.
Bool_t fIsDataLoaded
Has this subsystem gotten data to be processed?
void ClearAllBankRegistrations()
Clear all registration of ROC and Bank IDs for this subsystem.
virtual void PrintDetectorMaps(Bool_t status) const
#define QwError
Predefined log drain for errors.
TString GetSubsystemName() const