diff --git a/Configs/test_eosstorage.cfg b/Configs/test_eosstorage.cfg index d993b2071bfb1e43cd6152f216da2cd6f9802361..476ab8178730b6755ebf932bb53fb522dc1f9574 100644 --- a/Configs/test_eosstorage.cfg +++ b/Configs/test_eosstorage.cfg @@ -38,9 +38,9 @@ partition: "part_hlt_jholm" # Stream ERS messages to ers_info: "mts" -ers_warning: "mts" -ers_error: "mts" -ers_debug: "mts" +ers_warning: "" +ers_error: "" +ers_debug: "" ########## METADATA DATABASE ########## diff --git a/Script/cs/Threads/InfoServiceThread.py b/Script/cs/Threads/InfoServiceThread.py index 92752a5b157eaa6300f6d555f70547223ed625e9..f7780c24fa5834db79457c11a8f35152cc867d8a 100644 --- a/Script/cs/Threads/InfoServiceThread.py +++ b/Script/cs/Threads/InfoServiceThread.py @@ -43,7 +43,7 @@ class InfoServiceThread(threading.Thread): #send to IS if(self.ipc_partition.isValid()): - self.logger.debug("Provided Partition is Valid") + self.logger.debug("Provided Partition {} is Valid".format(self.ipc_partition.name())) self.send_update() else: self.logger.warning("Provided Partition not Valid, IS Service disabled") @@ -63,22 +63,27 @@ class InfoServiceThread(threading.Thread): def send_update(self): try: - is_data_type = "Double" + is_data_type = "CastorScriptState" #or "Double" + #is_data_type = "Double" + is_data_identifier = "RunParams.{}.State".format(self.tdaq_app_name) + self.logger.debug("Retrieving: {}, type: {}, from IS".format(is_data_identifier,is_data_type)) is_data = ispy.ISObject(self.ipc_partition, is_data_identifier, is_data_type) - + + self.logger.debug("{}".format(is_data)) if is_data.exists(): + self.logger.debug("found: {}".format(is_data)) is_data.checkout() - print("found: {}".format(is_data)) else: - print(is_data.name() + " does not exist") + self.logger.debug("{} does not exist".format(is_data.name())) + + is_data.uptime_seconds = self.uptime_seconds + #is_data.value = self.uptime_seconds - is_data.value = self.uptime_seconds is_data.checkin() self.logger.debug("Update sent: %s", str(is_data)) - self.logger.info("TEST Update sent: %s", str(is_data)) except Exception as ex: - self.logger.warning("Error occured while trying to change is_data to uptime_seconds=%d. Error was: %s", self.uptime_seconds, str(ex)) + self.logger.warning("Error occured in send_update(). Error was: %s", str(ex)) diff --git a/copy_me_to_public/partition_is_tests/CastorScriptState.h b/copy_me_to_public/partition_is_tests/CastorScriptState.h new file mode 100644 index 0000000000000000000000000000000000000000..4a1cb539283150526a06e1835b65755fd0862904 --- /dev/null +++ b/copy_me_to_public/partition_is_tests/CastorScriptState.h @@ -0,0 +1,92 @@ +#ifndef CASTORSCRIPTSTATE_H +#define CASTORSCRIPTSTATE_H + +#include <is/info.h> + +#include <string> +#include <ostream> + + +// <<BeginUserCode>> + +// <<EndUserCode>> +/** + * CastorScript instance state variables + * + * @author generated by the IS tool + * @version 15/04/19 + */ + +class CastorScriptState : public ISInfo { +public: + + /** + * uptime in seconds, since the CastorScript instance has started. + */ + double uptime_seconds; + + + static const ISType & type() { + static const ISType type_ = CastorScriptState( ).ISInfo::type(); + return type_; + } + + virtual std::ostream & print( std::ostream & out ) const { + ISInfo::print( out ); + out << std::endl; + out << "uptime_seconds: " << uptime_seconds << "\t// uptime in seconds, since the CastorScript instance has started."; + return out; + } + + CastorScriptState( ) + : ISInfo( "CastorScriptState" ) + { + initialize(); + } + + ~CastorScriptState(){ + +// <<BeginUserCode>> + +// <<EndUserCode>> + } + +protected: + CastorScriptState( const std::string & type ) + : ISInfo( type ) + { + initialize(); + } + + void publishGuts( ISostream & out ){ + out << uptime_seconds; + } + + void refreshGuts( ISistream & in ){ + in >> uptime_seconds; + } + +private: + void initialize() + { + +// <<BeginUserCode>> + +// <<EndUserCode>> + } + + +// <<BeginUserCode>> + +// <<EndUserCode>> +}; + +// <<BeginUserCode>> + +// <<EndUserCode>> +inline std::ostream & operator<<( std::ostream & out, const CastorScriptState & info ) { + info.print( out ); + return out; +} + +#endif // CASTORSCRIPTSTATE_H diff --git a/copy_me_to_public/partition_is_tests/CastorScriptState.java b/copy_me_to_public/partition_is_tests/CastorScriptState.java new file mode 100644 index 0000000000000000000000000000000000000000..b17539ef048354f3cd31942d4f01436f15b118a3 --- /dev/null +++ b/copy_me_to_public/partition_is_tests/CastorScriptState.java @@ -0,0 +1,53 @@ + +// <<BeginUserCode>> + +// <<EndUserCode>> +/** + * CastorScript instance state variables + * + * @author generated by the IS tool + * @version 15/04/19 + */ + +public class CastorScriptState extends is.Info { + public static final is.Type type = new is.Type( new CastorScriptState( ) ); + + + /** + * uptime in seconds, since the CastorScript instance has started. + */ + public double uptime_seconds; + + + public CastorScriptState() { + this( "CastorScriptState" ); + } + + protected CastorScriptState( String type ) { + super( type ); + +// <<BeginUserCode>> + +// <<EndUserCode>> + } + + public void publishGuts( is.Ostream out ) { + super.publishGuts( out ); + out.put( uptime_seconds ); + } + + public void refreshGuts( is.Istream in ) { + super.refreshGuts( in ); + uptime_seconds = in.getDouble( ); + } + + +// <<BeginUserCode>> + +// <<EndUserCode>> +} + +// <<BeginUserCode>> + +// <<EndUserCode>> + diff --git a/partition_is_tests/cs.schema.xml b/copy_me_to_public/partition_is_tests/CastorScriptState.schema.xml similarity index 85% rename from partition_is_tests/cs.schema.xml rename to copy_me_to_public/partition_is_tests/CastorScriptState.schema.xml index 2790262f0aef7bad78920500347c77e251456183..e096d0cfb93eca66064a65d06ae7ecdd73b14859 100644 --- a/partition_is_tests/cs.schema.xml +++ b/copy_me_to_public/partition_is_tests/CastorScriptState.schema.xml @@ -78,11 +78,10 @@ <oks-schema> -<info name="" type="" num-of-items="1" oks-format="schema" oks-version="oks-06-10-14 built "Apr 2 2019"" created-by="jholm" created-on="pc-tbed-pub-32.cern.ch" creation-time="20190402T083647" last-modified-by="jholm" last-modified-on="pc-tbed-pub-32.cern.ch" last-modification-time="20190402T085844"/> +<info name="" type="" num-of-items="1" oks-format="schema" oks-version="oks-07-00-02 built "Apr 16 2019"" created-by="jholm" created-on="pc-tbed-pub-32.cern.ch" creation-time="20190415T141919" last-modified-by="jholm" last-modified-on="pc-tbed-pub-27.cern.ch" last-modification-time="20190416T091405"/> - <class name="CastorScriptState" description="CastorScript State variables."> - <superclass name="Info"/> - <attribute name="uptime_seconds" description="Uptime in seconds since startup." type="u64"/> + <class name="CastorScriptState" description="CastorScript instance state variables"> + <attribute name="uptime_seconds" description="uptime in seconds, since the CastorScript instance has started." type="double"/> </class> </oks-schema> diff --git a/copy_me_to_public/partition_is_tests/cs-part_hlt_jholm.data.xml b/copy_me_to_public/partition_is_tests/cs-part_hlt_jholm.data.xml new file mode 100644 index 0000000000000000000000000000000000000000..e257eaa0816951fced2cf1b2c74e8c0961367585 --- /dev/null +++ b/copy_me_to_public/partition_is_tests/cs-part_hlt_jholm.data.xml @@ -0,0 +1,9885 @@ +<?xml version="1.0" encoding="ASCII"?> + +<!-- oks-data version 2.0 --> + + +<!DOCTYPE oks-data [ + <!ELEMENT oks-data (info, (include)?, (comments)?, (obj)+)> + <!ELEMENT info EMPTY> + <!ATTLIST info + name CDATA #REQUIRED + type CDATA #REQUIRED + num-of-items CDATA #REQUIRED + oks-format CDATA #FIXED "data" + oks-version CDATA #REQUIRED + created-by CDATA #REQUIRED + created-on CDATA #REQUIRED + creation-time CDATA #REQUIRED + last-modified-by CDATA #REQUIRED + last-modified-on CDATA #REQUIRED + last-modification-time CDATA #REQUIRED + > + <!ELEMENT include (file)*> + <!ELEMENT file EMPTY> + <!ATTLIST file + path CDATA #REQUIRED + > + <!ELEMENT comments (comment)*> + <!ELEMENT comment EMPTY> + <!ATTLIST comment + creation-time CDATA #REQUIRED + created-by CDATA #REQUIRED + created-on CDATA #REQUIRED + author CDATA #REQUIRED + text CDATA #REQUIRED + > + <!ELEMENT obj (attr | rel)*> + <!ATTLIST obj + class CDATA #REQUIRED + id CDATA #REQUIRED + > + <!ELEMENT attr (data)*> + <!ATTLIST attr + name CDATA #REQUIRED + type (bool|s8|u8|s16|u16|s32|u32|s64|u64|float|double|date|time|string|uid|enum|class|-) "-" + val CDATA "" + > + <!ELEMENT data EMPTY> + <!ATTLIST data + val CDATA #REQUIRED + > + <!ELEMENT rel (ref)*> + <!ATTLIST rel + name CDATA #REQUIRED + class CDATA "" + id CDATA "" + > + <!ELEMENT ref EMPTY> + <!ATTLIST ref + class CDATA #REQUIRED + id CDATA #REQUIRED + > +]> + +<oks-data> + +<info name="" type="" num-of-items="1057" oks-format="data" oks-version="oks-07-00-02 built "Apr 16 2019"" created-by="jholm" created-on="pc-tbed-pub-27.cern.ch" creation-time="20190416T091414" last-modified-by="jholm" last-modified-on="pc-tbed-pub-27.cern.ch" last-modification-time="20190416T091414"/> + +<include> + <file path="cs-part_hlt_jholm.schema.xml"/> +</include> + + +<obj class="Binary" id="HLTMPPU_main"> + <attr name="BinaryName" type="string" val="HLTMPPU_main"/> + <attr name="Description" type="string" val="multi-processing HLTPU Processing Task based on ATHENA"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="ORBscanGranularity"/> + </rel> +</obj> + +<obj class="Binary" id="HLTRC_main"> + <attr name="BinaryName" type="string" val="HLTRC_main"/> + <attr name="Description" type="string" val="HLT RC helper for HLTMPPU"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="MonInfoGatherer"> + <attr name="BinaryName" type="string" val="MonInfoGatherer"/> + <attr name="Description" type="string" val="Histogram summing application. Receives histograms from individual nodes and combines them."/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="ROSTester"> + <attr name="BinaryName" type="string" val="ROSTester"/> + <attr name="Description" type="string" val="test Application that sends requests and clears to the ROS,.emulating DCM and hltsv"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="ROx"> + <attr name="BinaryName" type="string" val="ROx"/> + <attr name="Description" type="string" val="Software ROD"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="ReadoutApplication"> + <attr name="BinaryName" type="string" val="ReadoutApplication"/> + <attr name="Description" type="string" val="Application that instantiates IOManager for ROS/RCD."/> + <attr name="HelpURL" type="string" val=""/> + <rel name="Needs"> + <ref class="RM_HW_Resource" id="ROS"/> + </rel> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="RobinTestSuite"> + <attr name="BinaryName" type="string" val="RobinTestSuite"/> + <attr name="Description" type="string" val="Test Suite package for testing Robin cards. For experts only"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="SFOng_main"> + <attr name="BinaryName" type="string" val="SFOng_main"/> + <attr name="Description" type="string" val="Sub Farm Output: the next generation"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="circ_generator"> + <attr name="BinaryName" type="string" val="circ_generator"/> + <attr name="Description" type="string" val="Event generator to fill a circular buffer"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="coca_server"> + <attr name="BinaryName" type="string" val="coca_server"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="config_dump"> + <attr name="BinaryName" type="string" val="config_dump"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="coralServer"> + <attr name="BinaryName" type="string" val="coralServer"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="CoralServerRepo"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="CS_CORAL_AUTH_PATH"/> + <ref class="Variable" id="CS_CORAL_DBLOOKUP_PATH"/> + </rel> +</obj> + +<obj class="Binary" id="coralServerProxy"> + <attr name="BinaryName" type="string" val="coralServerProxy"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="Needs"> + <ref class="RM_HW_Resource" id="DBPROXY"/> + </rel> + <rel name="BelongsTo" class="SW_Repository" id="CoralServerRepo"/> +</obj> + +<obj class="Binary" id="dal_create_db_connection_files"> + <attr name="BinaryName" type="string" val="dal_create_db_connection_files"/> + <attr name="Description" type="string" val="create dblookup and authentication xml files out of information in OKS."/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="dcm_main"> + <attr name="BinaryName" type="string" val="dcm_main"/> + <attr name="Description" type="string" val="Data Collection Manager"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="ddc_ct_dim"> + <attr name="BinaryName" type="string" val="ddc_ct_dim"/> + <attr name="Description" type="string" val="Application transferring DAQ commands to DCS via DIM PVSS manager"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="ddc_dt_dim"> + <attr name="BinaryName" type="string" val="ddc_dt_dim"/> + <attr name="Description" type="string" val="Application transferiing data DAQ <=> DCS via DIM PVSS manager"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="ddc_dt_dim_init"> + <attr name="BinaryName" type="string" val="ddc_dt_dim_init"/> + <attr name="Description" type="string" val="Application transferiing data DAQ <=> DCS via DIM PVSS manager, handling DAQ data in IS servers of initial partition"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="ddc_mt_dim"> + <attr name="BinaryName" type="string" val="ddc_mt_dim"/> + <attr name="Description" type="string" val="Application transferiing DCS=>DAQ messages via DIM PVSS manager"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="dolar_slink_src"> + <attr name="BinaryName" type="string" val="dolar_slink_src"/> + <attr name="Description" type="string" val="Generates SLINK fragments using a Dolar"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="dolarscope"> + <attr name="BinaryName" type="string" val="dolarscope"/> + <attr name="Description" type="string" val="Binary for dolarscope"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="dozolar_fmctest"> + <attr name="BinaryName" type="string" val="dozolar_fmctest"/> + <attr name="Description" type="string" val="Tests FMC connectivity on a Dozolar"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="dozolar_setup"> + <attr name="BinaryName" type="string" val="dozolar_setup"/> + <attr name="Description" type="string" val="Initializes a Dozolar"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="dqm_archiver"> + <attr name="BinaryName" type="string" val="dqm_archiver"/> + <attr name="Description" type="string" val="DQM results archiving application"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="dqmf_agent"> + <attr name="BinaryName" type="string" val="dqmf_agent"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="dqmf_rm"> + <attr name="BinaryName" type="string" val="dqmf_rm"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="eff_csv_splunk"> + <attr name="BinaryName" type="string" val="eff_csv_splunk"/> + <attr name="Description" type="string" val="Application to evaluate lumi block efficiency"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="CORAL_AUTH_PATH"/> + </rel> +</obj> + +<obj class="Binary" id="eff_daq_efficiency"> + <attr name="BinaryName" type="string" val="eff_daq_efficiency"/> + <attr name="Description" type="string" val="Application to evaluate lumi block efficiency"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="CORAL_AUTH_PATH"/> + </rel> +</obj> + +<obj class="Binary" id="eff_daq_splunk"> + <attr name="BinaryName" type="string" val="eff_daq_splunk"/> + <attr name="Description" type="string" val="Application to evaluate lumi block efficiency"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="CORAL_AUTH_PATH"/> + </rel> +</obj> + +<obj class="Binary" id="eff_make_combined_graphs"> + <attr name="BinaryName" type="string" val="eff_make_combined_graphs"/> + <attr name="Description" type="string" val="Application to produce a root file from efficiency data files"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="eff_make_csv_file"> + <attr name="BinaryName" type="string" val="eff_make_csv_file"/> + <attr name="Description" type="string" val="Application to produce a csv file with run efficiency data"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="CORAL_AUTH_PATH"/> + </rel> +</obj> + +<obj class="Binary" id="eff_run_efficiency"> + <attr name="BinaryName" type="string" val="eff_run_efficiency"/> + <attr name="Description" type="string" val="Application to evaluate run efficency"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="CORAL_AUTH_PATH"/> + </rel> +</obj> + +<obj class="Binary" id="emon_conductor"> + <attr name="BinaryName" type="string" val="emon_conductor"/> + <attr name="HelpURL" type="string" val=""/> + <attr name="DefaultParameters" type="string" val="-s -p env(TDAQ_PARTITION)"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="emon_pull_sampler"> + <attr name="BinaryName" type="string" val="emon_pull_sampler"/> + <attr name="HelpURL" type="string" val=""/> + <attr name="DefaultParameters" type="string" val="-p env(TDAQ_PARTITION)"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="emon_push_sampler"> + <attr name="BinaryName" type="string" val="emon_push_sampler"/> + <attr name="HelpURL" type="string" val=""/> + <attr name="DefaultParameters" type="string" val="-p env(TDAQ_PARTITION)"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="emon_task"> + <attr name="BinaryName" type="string" val="emon_task"/> + <attr name="HelpURL" type="string" val=""/> + <attr name="DefaultParameters" type="string" val="-p env(TDAQ_PARTITION)"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="eth_dst"> + <attr name="BinaryName" type="string" val="eth_dst"/> + <attr name="Description" type="string" val="Test for an eth connection, destination side"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="eth_src"> + <attr name="BinaryName" type="string" val="eth_src"/> + <attr name="Description" type="string" val="Test for an eth connection, source side"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="gnam"> + <attr name="BinaryName" type="string" val="gnam"/> + <attr name="Description" type="string" val="A Monitoring Application that is configurable through user dynamic libraries"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="hltpuEmu"> + <attr name="BinaryName" type="string" val="hltpuEmu"/> + <attr name="Description" type="string" val="It uses the dfinterface_dcm and emulates the hltpu behaviour"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="hltsv_main"> + <attr name="BinaryName" type="string" val="hltsv_main"/> + <attr name="Description" type="string" val="HLT Supervisor Application"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="ipc_proxy"> + <attr name="BinaryName" type="string" val="ipc_proxy"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="ipc_server"> + <attr name="BinaryName" type="string" val="ipc_server"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="is_ls"> + <attr name="BinaryName" type="string" val="is_ls"/> + <attr name="HelpURL" type="string" val=""/> + <attr name="DefaultParameters" type="string" val="-p env(TDAQ_PARTITION)"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="is_rm"> + <attr name="BinaryName" type="string" val="is_rm"/> + <attr name="HelpURL" type="string" val=""/> + <attr name="DefaultParameters" type="string" val="-p env(TDAQ_PARTITION)"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="is_server"> + <attr name="BinaryName" type="string" val="is_server"/> + <attr name="HelpURL" type="string" val=""/> + <attr name="DefaultParameters" type="string" val="-s -p env(TDAQ_PARTITION) -n env(TDAQ_APPLICATION_NAME)"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="littlejohn"> + <attr name="BinaryName" type="string" val="littlejohn"/> + <attr name="Description" type="string" val="A program for users to display the state of a Robin"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="logTest"> + <attr name="BinaryName" type="string" val="logTest"/> + <attr name="Description" type="string" val="Log Service test. Level 1: test access to the database is correct. Level 2: tests the Log Service infrastructure is ok."/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="CORAL_AUTH_PATH"/> + </rel> +</obj> + +<obj class="Binary" id="lsReceiver"> + <attr name="BinaryName" type="string" val="lsReceiver"/> + <attr name="Description" type="string" val="MRS client to collect log messages and store them on the Log Service databse"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="CORAL_AUTH_PATH"/> + </rel> +</obj> + +<obj class="Binary" id="mda"> + <attr name="BinaryName" type="string" val="mda"/> + <attr name="Description" type="string" val="Copying histos from OHS to CoCa"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="mda_eor"> + <attr name="BinaryName" type="string" val="mda_eor"/> + <attr name="Description" type="string" val="Copying histos from OHS to CoCa"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="mda_stat_publish"> + <attr name="BinaryName" type="string" val="mda_stat_publish"/> + <attr name="Description" type="string" val="Publishes histograms with MDA/CoCa statistics"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="mts2splunk_receiver"> + <attr name="BinaryName" type="string" val="mts2splunk_receiver"/> + <attr name="Description" type="string" val="MTS 2 Splunk indexer application"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="mts_ers_receiver"> + <attr name="BinaryName" type="string" val="mts_ers_receiver"/> + <attr name="Description" type="string" val="MTS example receiver application"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="mts_ers_sender"> + <attr name="BinaryName" type="string" val="mts_ers_sender"/> + <attr name="Description" type="string" val="MTS example sender application"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="mts_worker"> + <attr name="BinaryName" type="string" val="mts_worker"/> + <attr name="Description" type="string" val="Message Transfer System worker"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="np2lan"> + <attr name="BinaryName" type="string" val="np2lan"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="oh_cp"> + <attr name="BinaryName" type="string" val="oh_cp"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="oh_graph_provider"> + <attr name="BinaryName" type="string" val="oh_graph_provider"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="oh_ls"> + <attr name="BinaryName" type="string" val="oh_ls"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="oh_mv"> + <attr name="BinaryName" type="string" val="oh_mv"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="oh_raw_provider"> + <attr name="BinaryName" type="string" val="oh_raw_provider"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="oh_rm"> + <attr name="BinaryName" type="string" val="oh_rm"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="oh_root_provider"> + <attr name="BinaryName" type="string" val="oh_root_provider"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="oh_test_provider"> + <attr name="BinaryName" type="string" val="oh_test_provider"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="oks2coral"> + <attr name="BinaryName" type="string" val="oks2coral"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="olc2hlt-invalidate"> + <attr name="BinaryName" type="string" val="olc2hlt-invalidate"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="opmon_analyser"> + <attr name="BinaryName" type="string" val="opmon_analyser"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="opmon_monitor"> + <attr name="BinaryName" type="string" val="opmon_monitor"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="pbeast_is_receiver"> + <attr name="BinaryName" type="string" val="pbeast_is_receiver"/> + <attr name="Description" type="string" val="P-BEAST IS Receiver Application"/> + <attr name="HelpURL" type="string" val=""/> + <attr name="DefaultParameters" type="string" val="-s"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="pbeast_repository_server"> + <attr name="BinaryName" type="string" val="pbeast_repository_server"/> + <attr name="Description" type="string" val="P-BEAST Repository Server and Merger Application"/> + <attr name="HelpURL" type="string" val=""/> + <attr name="DefaultParameters" type="string" val="-s"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="pbeast_server"> + <attr name="BinaryName" type="string" val="pbeast_server"/> + <attr name="Description" type="string" val="P-BEAST Server Application"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="pbeast_web_receiver"> + <attr name="BinaryName" type="string" val="pbeast_web_receiver"/> + <attr name="Description" type="string" val="P-BEAST WEB Receiver Application"/> + <attr name="HelpURL" type="string" val=""/> + <attr name="DefaultParameters" type="string" val="-s"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="pmg_sleep_process"> + <attr name="BinaryName" type="string" val="pmg_sleep_process"/> + <attr name="Description" type="string" val="dummy test process"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="pmgserver"> + <attr name="BinaryName" type="string" val="pmgserver"/> + <attr name="Description" type="string" val="Process Manager agent"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="TDAQ_PMG_MANIFEST_DIR"/> + </rel> +</obj> + +<obj class="Binary" id="quest_test"> + <attr name="BinaryName" type="string" val="quest_test"/> + <attr name="Description" type="string" val="Binary for quest_test"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rc_bootstrap"> + <attr name="BinaryName" type="string" val="rc_bootstrap"/> + <attr name="Description" type="string" val="Application to start the basic infrastructure before launching the RootController"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rc_controller"> + <attr name="BinaryName" type="string" val="rc_controller"/> + <attr name="Description" type="string" val="A Controller implementing all the default actions"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rc_ctp_emulator"> + <attr name="BinaryName" type="string" val="rc_ctp_emulator"/> + <attr name="Description" type="string" val="Dispatches the commands received from RC to the CTP to all L2SVs, for emulation"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rc_dq_flag_writer"> + <attr name="BinaryName" type="string" val="rc_dq_flag_writer"/> + <attr name="Description" type="string" val="Application to archive DQ flag into COOL"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="CORAL_AUTH_PATH"/> + </rel> +</obj> + +<obj class="Binary" id="rc_example_app"> + <attr name="BinaryName" type="string" val="rc_example_app"/> + <attr name="Description" type="string" val="Example dummy leaf application"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rc_example_app_rm"> + <attr name="BinaryName" type="string" val="rc_example_app_rm"/> + <attr name="Description" type="string" val="Example leaf application requesting RM resources during state transitions"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rc_get_apps_start_order"> + <attr name="BinaryName" type="string" val="rc_get_apps_start_order"/> + <attr name="Description" type="string" val="Application unfolding start dependencies for a given segment/transition"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rc_get_efficiency"> + <attr name="BinaryName" type="string" val="rc_get_efficiency"/> + <attr name="Description" type="string" val="Application to evaluate data taking efficency"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="CORAL_AUTH_PATH"/> + </rel> +</obj> + +<obj class="Binary" id="rc_get_running_time"> + <attr name="BinaryName" type="string" val="rc_get_running_time"/> + <attr name="Description" type="string" val="Application to read run control information about the running time from COOL"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="CORAL_AUTH_PATH"/> + </rel> +</obj> + +<obj class="Binary" id="rc_is2cool_archive"> + <attr name="BinaryName" type="string" val="rc_is2cool_archive"/> + <attr name="Description" type="string" val="Application to archive run control information into COOL"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="CORAL_AUTH_PATH"/> + </rel> +</obj> + +<obj class="Binary" id="rc_pixel_ready_reactor"> + <attr name="BinaryName" type="string" val="rc_pixel_ready_reactor"/> + <attr name="Description" type="string" val="Utility to launch PixelUp if HV ready"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rc_pyrunner"> + <attr name="BinaryName" type="string" val="rc_pyrunner"/> + <attr name="Description" type="string" val="Application launcher for Controllable's python modules"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rc_root_controller"> + <attr name="BinaryName" type="string" val="rc_root_controller"/> + <attr name="Description" type="string" val="A Controller implementing the RootController functionalities"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rc_sender"> + <attr name="BinaryName" type="string" val="rc_sender"/> + <attr name="Description" type="string" val="Application to send commands to run control applications"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rc_sound_player"> + <attr name="BinaryName" type="string" val="rc_sound_player"/> + <attr name="Description" type="string" val="Plays sounds if some RC ERS issues are sent."/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rc_test_ctrl"> + <attr name="BinaryName" type="string" val="rc_test_ctrl"/> + <attr name="Description" type="string" val="Test to check if a run control application is alive"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rdb_server"> + <attr name="BinaryName" type="string" val="rdb_server"/> + <attr name="HelpURL" type="string" val="http://"/> + <attr name="DefaultParameters" type="string" val="-s -p env(TDAQ_PARTITION) -d env(TDAQ_APPLICATION_NAME)"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rdb_writer"> + <attr name="BinaryName" type="string" val="rdb_writer"/> + <attr name="HelpURL" type="string" val=""/> + <attr name="DefaultParameters" type="string" val="-s -p env(TDAQ_PARTITION) -d env(TDAQ_APPLICATION_NAME)"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="res_info_archiver"> + <attr name="BinaryName" type="string" val="res_info_archiver"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="res_info_provider"> + <attr name="BinaryName" type="string" val="res_info_provider"/> + <attr name="Description" type="string" val="Resource Information Publisher in IS and COOL Archiver"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rmgr_free_resource"> + <attr name="BinaryName" type="string" val="rmgr_free_resource"/> + <attr name="Description" type="string" val="RM utility for freeing a resource"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rmgr_request_resources"> + <attr name="BinaryName" type="string" val="rmgr_request_resources"/> + <attr name="Description" type="string" val="RC app ask resources during connect"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="rmgr_server"> + <attr name="BinaryName" type="string" val="rmgr_server"/> + <attr name="Description" type="string" val="Resource Manager"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="robinCheck"> + <attr name="BinaryName" type="string" val="robinCheck"/> + <attr name="Description" type="string" val="Stand alone Robin test program. Includes extanded PCI check"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="robin_irq_catch"> + <attr name="BinaryName" type="string" val="robin_irq_catch"/> + <attr name="Description" type="string" val="A test program to catch Robin-generated interrupts"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="robin_slink_dst"> + <attr name="BinaryName" type="string" val="robin_slink_dst"/> + <attr name="Description" type="string" val="A program to receive events sequentially with a Robin"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="robin_slink_src"> + <attr name="BinaryName" type="string" val="robin_slink_src"/> + <attr name="Description" type="string" val="A program to upload events into a Robin"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="robinscope"> + <attr name="BinaryName" type="string" val="robinscope"/> + <attr name="Description" type="string" val="A general purpose program to display and modify the state of Robins (for experts only)"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="robinstress"> + <attr name="BinaryName" type="string" val="robinstress"/> + <attr name="Description" type="string" val="Utility for testing Robins. For experts only"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="siom_application"> + <attr name="BinaryName" type="string" val="siom_application"/> + <attr name="Description" type="string" val="Simple IOManager application"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="slink_dst"> + <attr name="BinaryName" type="string" val="slink_dst"/> + <attr name="Description" type="string" val="Test for an slink connection, destination side"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="slink_src"> + <attr name="BinaryName" type="string" val="slink_src"/> + <attr name="Description" type="string" val="Test for an slink connection, source side"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="solarscope"> + <attr name="BinaryName" type="string" val="solarscope"/> + <attr name="Description" type="string" val="Binary for solarscope"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="testDCM"> + <attr name="BinaryName" type="string" val="testDCM"/> + <attr name="Description" type="string" val="Tester for hltsv"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="testROS"> + <attr name="BinaryName" type="string" val="testROS"/> + <attr name="Description" type="string" val="Tester for hltsv"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="testTTC2LAN"> + <attr name="BinaryName" type="string" val="testTTC2LAN"/> + <attr name="Description" type="string" val="TTC2LAN Tester for hltsv"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_app_log"> + <attr name="BinaryName" type="string" val="test_app_log"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_app_pmg"> + <attr name="BinaryName" type="string" val="test_app_pmg"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_computer"> + <attr name="BinaryName" type="string" val="test_computer"/> + <attr name="Description" type="string" val="runs few commands remotely and checks that computer's name and HW Tag corresonds the database description"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_corba_server"> + <attr name="BinaryName" type="string" val="test_corba_server"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_drivers"> + <attr name="BinaryName" type="string" val="test_drivers"/> + <attr name="Description" type="string" val="For DVS: Test presence of BPA and suitable drivers"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_dummy"> + <attr name="BinaryName" type="string" val="test_dummy"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_host_ip"> + <attr name="BinaryName" type="string" val="test_host_ip"/> + <attr name="Description" type="string" val="resolves computer name and pings it"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_ipc_server"> + <attr name="BinaryName" type="string" val="test_ipc_server"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_is_info"> + <attr name="BinaryName" type="string" val="test_is_info"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_is_server"> + <attr name="BinaryName" type="string" val="test_is_server"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_pmg_agent"> + <attr name="BinaryName" type="string" val="test_pmg_agent"/> + <attr name="Description" type="string" val="test application for agent"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_process_id"> + <attr name="BinaryName" type="string" val="test_process_id"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_program_file"> + <attr name="BinaryName" type="string" val="test_program_file"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_rdb_server"> + <attr name="BinaryName" type="string" val="test_rdb_server"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_rdb_writer"> + <attr name="BinaryName" type="string" val="test_rdb_writer"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="test_tcp_port"> + <attr name="BinaryName" type="string" val="test_tcp_port"/> + <attr name="Description" type="string" val="checks that some service is listening on a remoted port"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="trg_dummy_master_trigger"> + <attr name="BinaryName" type="string" val="trg_dummy_master_trigger"/> + <attr name="Description" type="string" val="Dummy implementation of the MasterTrigger interface"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="trpgui"> + <attr name="BinaryName" type="string" val="trpgui"/> + <attr name="Description" type="string" val="Trigger Rate Presenter GUI"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Binary" id="wmi_server"> + <attr name="BinaryName" type="string" val="wmi_server"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Computer" id="pc-tbed-dolar-01"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-dolar-02"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-hltsv-00.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5645 @ 2.40GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="12318"/> + <attr name="CPU" type="u16" val="2400"/> + <attr name="NumberOfCores" type="u16" val="12"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-hltsv-00.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-hltsv-01.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5645 @ 2.40GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="12318"/> + <attr name="CPU" type="u16" val="2400"/> + <attr name="NumberOfCores" type="u16" val="12"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-hltsv-01.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-hltsv-02.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-1650 v2 @ 3.50GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="16431"/> + <attr name="CPU" type="u16" val="3500"/> + <attr name="NumberOfCores" type="u16" val="12"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-hltsv-02.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-lfs-05"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-lfs-06"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-lfs-07"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-01"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-02"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-03"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-04"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-05"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-06"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-07"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-08"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-09"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-10"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-11"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-12"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-13.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-net-13.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-net-14.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-net-14.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-net-15.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-net-15.cern.ch-eth0"/> + <ref class="NetworkInterface" id="pc-tbed-net-15.cern.ch-eth2"/> + <ref class="NetworkInterface" id="pc-tbed-net-15.cern.ch-vlan146"/> + <ref class="NetworkInterface" id="pc-tbed-net-15.cern.ch-vlan149"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-net-16.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-net-16.cern.ch-eth0"/> + <ref class="NetworkInterface" id="pc-tbed-net-16.cern.ch-eth2"/> + <ref class="NetworkInterface" id="pc-tbed-net-16.cern.ch-vlan146"/> + <ref class="NetworkInterface" id="pc-tbed-net-16.cern.ch-vlan149"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-net-17.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-net-17.cern.ch-eth0"/> + <ref class="NetworkInterface" id="pc-tbed-net-17.cern.ch-eth2"/> + <ref class="NetworkInterface" id="pc-tbed-net-17.cern.ch-vlan146"/> + <ref class="NetworkInterface" id="pc-tbed-net-17.cern.ch-vlan149"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-net-18.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-net-18.cern.ch-eth0"/> + <ref class="NetworkInterface" id="pc-tbed-net-18.cern.ch-eth2"/> + <ref class="NetworkInterface" id="pc-tbed-net-18.cern.ch-vlan146"/> + <ref class="NetworkInterface" id="pc-tbed-net-18.cern.ch-vlan149"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-net-19.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-net-19.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-net-20.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-net-20.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-net-21.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-net-21.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-net-22"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-23"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-24"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-25"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-26"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-27"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-28"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-29"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-30"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-31"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-32"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-33"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-net-34"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-onl-01.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1222"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-onl-01.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-onl-02.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1271"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-onl-02.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-01"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-02"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-03"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-04"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-05"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-06"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-07"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-08"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-09"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-10"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-11"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-12"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-13"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-14"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-15"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-16"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-17"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-18"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-19"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-20"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-pub-21.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-21.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-22.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-22.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-23.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-23.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-24.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-24.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-25.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-25.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-26.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-26.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-27.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1240"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-27.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-28.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="2958"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-28.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-29.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1243"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-29.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-30.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1219"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-30.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-31.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1200"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-31.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-32.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="2655"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-32.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-33.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1244"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-33.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-34.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1212"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-34.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-35.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1200"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-35.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-pub-36.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-pub-36.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-r3-01.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-02.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-03.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-04.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-05.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-06.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-07.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-08.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-09.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-10.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-11.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-12.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-13.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-14.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-15.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-16.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-17.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-18.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-19.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32761"/> + <attr name="CPU" type="u16" val="2101"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-20.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1200"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-21.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1200"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-22.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1200"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-23.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1200"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-24.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1199"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-25.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1200"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-26.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1200"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-27.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1201"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-28.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1199"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-29.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1200"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-30.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1285"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-31.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1200"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-32.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1199"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-33.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1299"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-34.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1200"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-35.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1226"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-36.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1223"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-37.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1200"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-38"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-39"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-40"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-41"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-42"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-43"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-44"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-45"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-46"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-47.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1200"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-48"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-49.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1200"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r3-50.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="32661"/> + <attr name="CPU" type="u16" val="1200"/> + <attr name="NumberOfCores" type="u16" val="32"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r5-01"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r5-02"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r5-03"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-r5-04"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-ros-01"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-ros-02.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Core(TM)2 Quad CPU Q9650 @ 3.00GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="4052"/> + <attr name="CPU" type="u16" val="3000"/> + <attr name="NumberOfCores" type="u16" val="4"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-ros-03"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-ros-04"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-ros-05"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-ros-06"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-ros-07"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05001.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05001.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05002.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05002.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05003.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05003.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05004.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05004.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05005.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05005.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05006.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05006.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05007.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05007.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05008.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05008.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05009.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05009.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05010.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05010.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05011.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05011.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05012.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05012.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05013.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05013.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05014.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05014.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05015.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05015.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05016.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05016.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05017.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05017.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05018.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05018.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05019.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05019.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05020.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2533"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05020.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05021.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05021.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05022.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05022.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05023.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05023.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05024.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05024.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05025.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05025.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05026.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05026.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05027.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05027.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05028.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05028.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05029.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05029.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05030.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05030.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05031.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05031.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05032.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05032.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05033.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="65535"/> + <attr name="CPU" type="u16" val="3206"/> + <attr name="NumberOfCores" type="u16" val="48"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05033.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05034.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="65535"/> + <attr name="CPU" type="u16" val="1754"/> + <attr name="NumberOfCores" type="u16" val="48"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05034.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05035.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="65535"/> + <attr name="CPU" type="u16" val="2517"/> + <attr name="NumberOfCores" type="u16" val="48"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05035.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-05036.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="65535"/> + <attr name="CPU" type="u16" val="3246"/> + <attr name="NumberOfCores" type="u16" val="48"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-05036.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06001.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06001.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06002.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06002.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06003.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06003.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06004.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06004.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06005.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06005.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06006.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06006.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06007.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06007.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06008.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06008.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06009.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06009.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06010.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06010.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06011"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06012.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06012.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06013.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06013.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06014.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06014.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06015.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06015.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06016.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06016.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06017.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06017.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06018.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06018.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06019.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06019.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06020.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06020.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06021.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06021.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06022.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06022.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06023.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06023.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06024.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06024.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06025.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06025.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06026.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06026.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06027.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06027.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06028.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06028.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06029.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06029.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06030.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06030.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06031.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06031.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06032.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24728"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06032.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06033.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="65535"/> + <attr name="CPU" type="u16" val="2494"/> + <attr name="NumberOfCores" type="u16" val="48"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06033.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06034.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="65535"/> + <attr name="CPU" type="u16" val="2494"/> + <attr name="NumberOfCores" type="u16" val="48"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06034.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06035.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="65535"/> + <attr name="CPU" type="u16" val="2494"/> + <attr name="NumberOfCores" type="u16" val="48"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06035.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-06036.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="65535"/> + <attr name="CPU" type="u16" val="2494"/> + <attr name="NumberOfCores" type="u16" val="48"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-06036.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07001.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07001.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07002.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07002.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07003.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07003.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07004.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07004.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07005.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07005.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07006.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07006.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07007.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07007.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07008.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07008.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07009.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07009.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07010.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07010.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07011.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07011.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07012.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07012.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07013.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07013.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07014.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07014.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07015.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07015.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07016.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07016.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07017.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07017.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07018.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07018.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07019.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07019.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07020.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07020.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07021.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07021.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07022.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07022.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07023.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07023.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07024.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07024.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07025.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07025.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07026.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07026.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07027.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07027.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07028.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07028.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07029.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07029.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07030.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07030.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="pc-tbed-tpu-07031.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="24677"/> + <attr name="CPU" type="u16" val="2534"/> + <attr name="NumberOfCores" type="u16" val="16"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="pc-tbed-tpu-07031.cern.ch-dc1"/> + </rel> +</obj> + +<obj class="Computer" id="sbc-tbed-110"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="State" type="bool" val="0"/> + <attr name="Memory" type="u32" val="16384"/> + <attr name="CPU" type="u16" val="2048"/> + <attr name="NumberOfCores" type="u16" val="8"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="sbc-tbed-717.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="Type" type="string" val="Intel(R) Core(TM) i7 CPU L 620 @ 2.00GHz"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="3832"/> + <attr name="CPU" type="u16" val="2000"/> + <attr name="NumberOfCores" type="u16" val="4"/> + <attr name="RLogin" type="string" val="ssh"/> +</obj> + +<obj class="Computer" id="vm-tbed-onl-01.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="QEMU Virtual CPU version (cpu64-rhel6)"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="2783"/> + <attr name="CPU" type="u16" val="2099"/> + <attr name="NumberOfCores" type="u16" val="2"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="vm-tbed-onl-01.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="Computer" id="vm-tbed-onl-02.cern.ch"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="Type" type="string" val="QEMU Virtual CPU version (cpu64-rhel6)"/> + <attr name="State" type="bool" val="1"/> + <attr name="Memory" type="u32" val="2783"/> + <attr name="CPU" type="u16" val="2099"/> + <attr name="NumberOfCores" type="u16" val="2"/> + <attr name="RLogin" type="string" val="ssh"/> + <rel name="Interfaces"> + <ref class="NetworkInterface" id="vm-tbed-onl-02.cern.ch-eth0"/> + </rel> +</obj> + +<obj class="ComputerSet" id="TestHosts"> + <rel name="Contains"> + <ref class="Computer" id="pc-tbed-r3-50.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-49.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-20.cern.ch"/> + </rel> +</obj> + +<obj class="ComputerSet" id="TestsHosts4TBed"> + <rel name="Contains"> + <ref class="Computer" id="pc-tbed-r3-49.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-20.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-21.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-22.cern.ch"/> + </rel> +</obj> + +<obj class="ComputerSet" id="rack-r3-01"> + <rel name="Contains"> + <ref class="ComputerSet" id="rack-r3-01-trim"/> + <ref class="Computer" id="pc-tbed-r3-50.cern.ch"/> + </rel> +</obj> + +<obj class="ComputerSet" id="rack-r3-01-trim"> + <rel name="Contains"> + <ref class="Computer" id="pc-tbed-r3-01.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-02.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-03.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-04.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-05.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-06.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-07.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-08.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-09.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-10.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-11.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-12.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-13.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-14.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-15.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-16.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-17.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-18.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-19.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-20.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-21.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-22.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-23.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-24.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-25.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-26.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-27.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-28.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-29.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-30.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-31.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-32.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-33.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-34.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-35.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-36.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-37.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-47.cern.ch"/> + <ref class="Computer" id="pc-tbed-r3-49.cern.ch"/> + </rel> +</obj> + +<obj class="ComputerSet" id="tpu-rack-05"> + <rel name="Contains"> + <ref class="Computer" id="pc-tbed-tpu-05001.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05002.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05003.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05004.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05005.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05006.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05007.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05008.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05009.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05010.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05011.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05012.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05013.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05014.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05015.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05016.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05017.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05018.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05019.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05020.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05021.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05022.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05023.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05024.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05025.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05026.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05027.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05028.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05029.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05030.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05031.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05032.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05033.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05034.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05035.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-05036.cern.ch"/> + </rel> +</obj> + +<obj class="ComputerSet" id="tpu-rack-06"> + <rel name="Contains"> + <ref class="ComputerSet" id="tpu-rack-06-trim"/> + <ref class="Computer" id="pc-tbed-tpu-06031.cern.ch"/> + </rel> +</obj> + +<obj class="ComputerSet" id="tpu-rack-06-trim"> + <rel name="Contains"> + <ref class="Computer" id="pc-tbed-tpu-06001.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06002.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06003.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06004.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06005.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06006.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06007.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06008.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06009.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06010.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06012.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06013.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06014.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06015.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06016.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06017.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06018.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06019.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06020.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06021.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06022.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06023.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06024.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06025.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06026.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06027.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06028.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06029.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06030.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06031.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06032.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06033.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06034.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06035.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-06036.cern.ch"/> + </rel> +</obj> + +<obj class="ComputerSet" id="tpu-rack-07"> + <rel name="Contains"> + <ref class="ComputerSet" id="tpu-rack-07-trim"/> + </rel> +</obj> + +<obj class="ComputerSet" id="tpu-rack-07-trim"> + <rel name="Contains"> + <ref class="Computer" id="pc-tbed-tpu-07001.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07002.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07003.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07004.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07005.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07006.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07007.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07008.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07009.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07010.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07011.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07012.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07013.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07014.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07015.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07016.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07017.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07018.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07019.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07020.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07021.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07022.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07023.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07024.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07025.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07026.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07027.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07028.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07029.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07030.cern.ch"/> + <ref class="Computer" id="pc-tbed-tpu-07031.cern.ch"/> + </rel> +</obj> + +<obj class="ConfigurationRule" id="DcmISRule"> + <attr name="IncludeFilter" type="string" val=".*"/> + <rel name="Parameters" class="ISPublishingParameters" id="DcmISPublishingParameters"/> +</obj> + +<obj class="ConfigurationRule" id="DcmOHRule"> + <attr name="IncludeFilter" type="string" val=".*"/> + <rel name="Parameters" class="OHPublishingParameters" id="DcmOHPublishingParameters"/> +</obj> + +<obj class="ConfigurationRule" id="DefaultOHRule"> + <attr name="IncludeFilter" type="string" val=".*"/> + <rel name="Parameters" class="OHPublishingParameters" id="DefaultOHPublishingParameters"/> +</obj> + +<obj class="ConfigurationRule" id="HltpuISRule"> + <attr name="IncludeFilter" type="string" val=".*"/> + <rel name="Parameters" class="ISPublishingParameters" id="HltpuISPublishingParameters"/> +</obj> + +<obj class="ConfigurationRule" id="HltpuOHRule"> + <attr name="IncludeFilter" type="string" val=".*"/> + <rel name="Parameters" class="OHPublishingParameters" id="HltpuOHPublishingParameters"/> +</obj> + +<obj class="ConfigurationRule" id="HltsvISRule"> + <attr name="IncludeFilter" type="string" val=".*"/> + <rel name="Parameters" class="ISPublishingParameters" id="HltsvISPublishingParameters"/> +</obj> + +<obj class="ConfigurationRule" id="HltsvOHRule"> + <attr name="IncludeFilter" type="string" val=".*"/> + <rel name="Parameters" class="OHPublishingParameters" id="HltsvOHPublishingParameters"/> +</obj> + +<obj class="ConfigurationRule" id="SfoDefaultISRule"> + <attr name="IncludeFilter" type="string" val=".*"/> + <attr name="ExcludeFilter" type="string" val=".*WIOS.*"/> + <rel name="Parameters" class="ISPublishingParameters" id="DefaultISPublishingParameters"/> +</obj> + +<obj class="ConfigurationRule" id="SfoWiosISRule"> + <attr name="IncludeFilter" type="string" val=".*WIOS.*"/> + <rel name="Parameters" class="ISPublishingParameters" id="SfoWiosDFISPublishingParameters"/> +</obj> + +<obj class="ConfigurationRuleBundle" id="DcmConfigurationRuleBundle"> + <rel name="Rules"> + <ref class="ConfigurationRule" id="DcmOHRule"/> + <ref class="ConfigurationRule" id="DcmISRule"/> + </rel> +</obj> + +<obj class="ConfigurationRuleBundle" id="HltpuConfigurationRuleBundle"> + <rel name="Rules"> + <ref class="ConfigurationRule" id="HltpuOHRule"/> + <ref class="ConfigurationRule" id="HltpuISRule"/> + </rel> +</obj> + +<obj class="ConfigurationRuleBundle" id="HltsvConfigurationRuleBundle"> + <rel name="Rules"> + <ref class="ConfigurationRule" id="HltsvOHRule"/> + <ref class="ConfigurationRule" id="HltsvISRule"/> + </rel> +</obj> + +<obj class="ConfigurationRuleBundle" id="SfoConfigurationRuleBundle"> + <rel name="Rules"> + <ref class="ConfigurationRule" id="DefaultOHRule"/> + <ref class="ConfigurationRule" id="SfoDefaultISRule"/> + <ref class="ConfigurationRule" id="SfoWiosISRule"/> + </rel> +</obj> + +<obj class="CustomLifetimeApplication" id="oh_clean_SOR"> + <attr name="Lifetime" type="enum" val="SOR_EOR"/> + <attr name="AllowSpontaneousExit" type="bool" val="1"/> + <attr name="Parameters" type="string" val="-p ${TDAQ_PARTITION} -s ".*" -n ".*" -o ".*""/> + <attr name="RestartParameters" type="string" val="-p ${TDAQ_PARTITION} -s ".*" -n ".*" -o ".*""/> + <attr name="Logging" type="bool" val="1"/> + <attr name="ExitTimeout" type="u32" val="37"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Ignore"/> + <attr name="IfFailsToStart" type="enum" val="Ignore"/> + <rel name="Program" class="Binary" id="oh_rm"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="CustomLifetimeTemplateApplication" id="HLT_DB_Gen"> + <attr name="Lifetime" type="enum" val="Boot_Shutdown"/> + <attr name="AllowSpontaneousExit" type="bool" val="1"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="AllButFirstHost"/> + <rel name="Program" class="Binary" id="dal_create_db_connection_files"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="DEFAULT_HLT_CORAL_DBLOOKUP_PATH"/> + <ref class="Variable" id="DEFAULT_HLT_CORAL_AUTH_PATH"/> + </rel> +</obj> + +<obj class="CustomLifetimeTemplateApplication" id="NodeCoralProxy"> + <attr name="Lifetime" type="enum" val="Boot_Shutdown"/> + <attr name="AllowSpontaneousExit" type="bool" val="0"/> + <attr name="Parameters" type="string" val="-v -m -p 3320 -s 3320 env(TDAQ_CORAL_PROXY_HOST)"/> + <attr name="RestartParameters" type="string" val="-v -m -p 3320 -s 3320 env(TDAQ_CORAL_PROXY_HOST)"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="AllButFirstHost"/> + <rel name="Program" class="Binary" id="coralServerProxy"/> +</obj> + +<obj class="DFParameters" id="Default-DFParameters-1"> + <attr name="Name" type="string" val="Default-DFParameters-1"/> + <attr name="BasePortEFD_SFI" type="u16" val="10000"/> + <attr name="BasePortEFD_SFO" type="u16" val="11000"/> + <attr name="DefaultDataNetworks" type="string"> + <data val="128.141.0.0/255.255.0.0"/> + <data val="188.184.2.64/255.255.255.192"/> + <data val="137.138.0.0/255.255.0.0"/> + </attr> +</obj> + +<obj class="DFTriggerIn" id="ROS-Segment-1-TriggerIn"> + <attr name="DeleteGrouping" type="u32" val="100"/> + <attr name="nDataServerThreads" type="u32" val="2"/> +</obj> + +<obj class="DataAccess" id="accessAnySubdetector"> + <attr name="nROBDistribution" type="string" val="F|TMath::Gaus(x,2,2)|1|5"/> + <attr name="comment" type="string" val="1-5 ROBS from any sub detector."/> +</obj> + +<obj class="DataAccess" id="accessAnySubdetector-1"> + <attr name="nROBDistribution" type="string" val="C|1"/> + <attr name="comment" type="string" val="Access 1 ROB in any sub detector."/> +</obj> + +<obj class="DcmApplication" id="dcm"> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="10"/> + <attr name="ProbeInterval" type="s32" val="25"/> + <attr name="FullStatisticsInterval" type="s32" val="63"/> + <attr name="ControlsTTCPartitions" type="bool" val="0"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="0"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Handle"/> + <attr name="IfFailsToStart" type="enum" val="Ignore"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="AllButFirstHost"/> + <attr name="infoAverageInterval_s" type="u32" val="100"/> + <attr name="dynamicUpdate" type="bool" val="1"/> + <attr name="samplerBufferSize" type="u32" val="5"/> + <attr name="sbaDirectory" type="string" val="/tmp"/> + <attr name="sbaBaseName" type="string" val="dcm"/> + <attr name="sbaNumOfBlocks" type="u32" val="32"/> + <attr name="sbaBlockSize_MiB" type="u32" val="32"/> + <attr name="sbaRecoveryMode" type="enum" val="NONE"/> + <attr name="compressionAlgorithm" type="enum" val="NONE"/> + <attr name="UpperEdgeSizeHistos" type="float" val="3000"/> + <attr name="UpperEdgeTimeHistos" type="float" val="2000"/> + <rel name="Program" class="Binary" id="dcm_main"/> + <rel name="ConfigurationRules" class="ConfigurationRuleBundle" id="DcmConfigurationRuleBundle"/> + <rel name="l1Source" class="DcmHltsvL1Source" id="dcmL1Source"/> + <rel name="dataCollector" class="DcmRosDataCollector" id="dcmRosDataCollector"/> + <rel name="processor" class="DcmHltpuProcessor" id="dcmHltpuProcessor"/> + <rel name="output" class="DcmSfoOutput" id="dcmSfoOutput"/> +</obj> + +<obj class="DcmHltpuProcessor" id="dcmHltpuProcessor"> + <attr name="processingTimeOut_ms" type="u32" val="60000"/> + <attr name="maxOutputEvents" type="u32" val="10"/> + <attr name="markDoneAfterEventBuilding" type="bool" val="1"/> +</obj> + +<obj class="DcmHltsvL1Source" id="dcmL1Source"> + <attr name="maxClearDelay_ms" type="u32" val="1000"/> +</obj> + +<obj class="DcmRosDataCollector" id="dcmRosDataCollector"> + <attr name="nRequestCredits" type="u32" val="64"/> + <attr name="requestTimeout_s" type="u32" val="10"/> +</obj> + +<obj class="DcmSfoOutput" id="dcmSfoOutput"> + <attr name="requestTimeout_s" type="u32" val="100"/> + <attr name="acknowledgmentTimeout_s" type="u32" val="10"/> + <attr name="onlyLocalSfo" type="bool" val="0"/> +</obj> + +<obj class="Detector" id="PIXEL_BARREL"> + <attr name="LogicalId" type="u8" val="17"/> +</obj> + +<obj class="DummyCalStreamTag" id="EF-Calibration-Tag-0"> + <attr name="name" type="string" val="EF-Calibration-Tag-0"/> + <attr name="probability" type="float" val="0.1"/> + <rel name="calibData" class="DataAccess" id="accessAnySubdetector"/> +</obj> + +<obj class="DummyROBStep" id="calo_algorithm-1"> + <attr name="burnTimeDistribution" type="string" val="F|TMath::Gaus(x,20000,20)|5000|500000"/> + <rel name="physicsTag" class="DummyStreamTag" id="L2-CaloPhysics-Tag-0"/> + <rel name="debugTag" class="DummyStreamTag" id="L2-Debug-Tag-0"/> + <rel name="roi"> + <ref class="DataAccess" id="accessAnySubdetector-1"/> + </rel> +</obj> + +<obj class="DummyStep" id="efStep"> + <attr name="burnTimeDistribution" type="string" val="C|500000"/> + <rel name="physicsTag" class="DummyStreamTag" id="EF-Physics-Tag-0"/> + <rel name="debugTag" class="DummyStreamTag" id="EF-Debug-Tag-0"/> + <rel name="calibrationTag" class="DummyCalStreamTag" id="EF-Calibration-Tag-0"/> +</obj> + +<obj class="DummyStreamTag" id="EF-Debug-Tag-0"> + <attr name="probability" type="float" val="0.1"/> +</obj> + +<obj class="DummyStreamTag" id="EF-Physics-Tag-0"> + <attr name="probability" type="float" val="0.25"/> +</obj> + +<obj class="DummyStreamTag" id="L2-CaloPhysics-Tag-0"> + <attr name="probability" type="float" val="0.2"/> +</obj> + +<obj class="DummyStreamTag" id="L2-Debug-Tag-0"> + <attr name="probability" type="float" val="0"/> +</obj> + +<obj class="EmulatedReadoutConfiguration" id="ROS-Segment-1-EmulatedConfig"> + <attr name="GetMissingFragment" type="float" val="0"/> + <attr name="NumberOfStatusElements" type="s32" val="1"/> + <attr name="DataSize" type="enum" val="FIXED"/> +</obj> + +<obj class="EmulatedReadoutModule" id="EMULATED-MODULE-PIXEL_BARREL-00-0"> + <rel name="Contains"> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111705"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111706"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111707"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111708"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111709"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111710"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111711"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111712"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111714"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111715"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111716"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111717"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111718"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111719"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111720"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111721"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111805"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111806"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111807"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111808"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111809"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111810"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111811"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111812"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111814"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111815"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111816"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111817"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111818"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111819"/> + <ref class="InputChannel" id="ROL-PIXEL_BARREL-00-111820"/> + </rel> + <rel name="Configuration" class="EmulatedReadoutConfiguration" id="ROS-Segment-1-EmulatedConfig"/> +</obj> + +<obj class="Executable" id="test_app_pmg"> + <attr name="Parameters" type="string" val="-p ${TDAQ_PARTITION} -H #this.get_host().UID #this.get_backup_hosts().UID -a #this.UID"/> + <rel name="Executes" class="Binary" id="test_app_pmg"/> +</obj> + +<obj class="Executable" id="test_dummy"> + <attr name="Parameters" type="string" val="-d 0"/> + <attr name="InitTimeout" type="s32" val="5"/> + <rel name="Executes" class="Binary" id="test_dummy"/> +</obj> + +<obj class="Executable" id="test_dummy_fail_0.01"> + <attr name="Parameters" type="string" val="-d 0 -f 0.01 -r 4"/> + <attr name="InitTimeout" type="s32" val="5"/> + <rel name="Executes" class="Binary" id="test_dummy"/> +</obj> + +<obj class="Executable" id="test_dummy_long"> + <attr name="Parameters" type="string" val="-d 2 -s 5 -r 5 -f 0.01"/> + <attr name="InitTimeout" type="s32" val="10"/> + <rel name="Executes" class="Binary" id="test_dummy"/> +</obj> + +<obj class="Executable" id="test_host"> + <attr name="Host" type="string" val="#this.UID"/> + <attr name="Parameters" type="string" val="-ld ${TDAQ_LOGS_PATH} -fs 10 -ul 96 -ml 9.99 -sd ${TDAQ_INST_PATH}"/> + <rel name="Executes" class="Script" id="test_host_system.sh"/> +</obj> + +<obj class="Executable" id="test_ipc_server"> + <attr name="Parameters" type="string" val="-p ${TDAQ_PARTITION}"/> + <rel name="Executes" class="Binary" id="test_ipc_server"/> +</obj> + +<obj class="Executable" id="test_is_server"> + <attr name="Parameters" type="string" val=" -p ${TDAQ_PARTITION} -n #this.UID"/> + <rel name="Executes" class="Binary" id="test_is_server"/> +</obj> + +<obj class="Executable" id="test_is_server_initial"> + <attr name="Parameters" type="string" val=" -p ${TDAQ_PARTITION} -n #this.IPCName"/> + <rel name="Executes" class="Binary" id="test_is_server"/> +</obj> + +<obj class="Executable" id="test_nic_dummy"> + <attr name="Host" type="string" val="#this.&Computer@Interfaces.UID"/> + <attr name="Parameters" type="string" val="-d 1"/> + <attr name="InitTimeout" type="s32" val="2"/> + <rel name="Executes" class="Binary" id="test_dummy"/> +</obj> + +<obj class="Executable" id="test_pmg"> + <attr name="Host" type="string" val="#this.UID"/> + <attr name="Parameters" type="string" val="-H #this.UID"/> + <rel name="Executes" class="Binary" id="test_pmg_agent"/> +</obj> + +<obj class="Executable" id="test_program_file"> + <attr name="Parameters" type="string" val="-f #this.BinaryName"/> + <rel name="Executes" class="Binary" id="test_program_file"/> +</obj> + +<obj class="HLTDFDCMBackend" id="DataSource-is-DCM"> + <attr name="library" type="string" val="dfinterfaceDcm"/> +</obj> + +<obj class="HLTMPPUApplication" id="HLTMPPU-1"> + <attr name="Lifetime" type="enum" val="Configure_Unconfigure"/> + <attr name="AllowSpontaneousExit" type="bool" val="0"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="0"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Handle"/> + <attr name="IfFailsToStart" type="enum" val="Ignore"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="AllButFirstHost"/> + <rel name="InitializationDependsFrom"> + <ref class="HLTRCApplication" id="HLTRC"/> + </rel> + <rel name="Program" class="Binary" id="HLTMPPU_main"/> +</obj> + +<obj class="HLTMonInfoImpl" id="hltMonSvc"> + <attr name="library" type="string" val="MonSvcInfoService"/> + <rel name="ConfigurationRules" class="ConfigurationRuleBundle" id="HltpuConfigurationRuleBundle"/> +</obj> + +<obj class="HLTRCApplication" id="HLTRC"> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Handle"/> + <attr name="IfFailsToStart" type="enum" val="Ignore"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="AllButFirstHost"/> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="10"/> + <attr name="ProbeInterval" type="s32" val="25"/> + <attr name="FullStatisticsInterval" type="s32" val="63"/> + <attr name="ControlsTTCPartitions" type="bool" val="0"/> + <attr name="numForks" type="u16" val="1"/> + <attr name="numberOfAthenaMTThreads" type="u16" val="1"/> + <attr name="numberOfEventSlots" type="u16" val="1"/> + <attr name="finalizeTimeout" type="u16" val="120"/> + <attr name="softTimeoutFraction" type="double" val="0.8"/> + <attr name="SolenoidCurrentPath" type="string" val="initial/DCS_GENERAL.MagnetSolenoidCurrent.value"/> + <attr name="ToroidCurrentPath" type="string" val="initial/DCS_GENERAL.MagnetToroidsCurrent.value"/> + <rel name="Program" class="Binary" id="HLTRC_main"/> + <rel name="DataSource" class="HLTDFDCMBackend" id="DataSource-is-DCM"/> + <rel name="InfoService" class="HLTMonInfoImpl" id="hltMonSvc"/> +</obj> + +<obj class="HLTSVApplication" id="HLTSV"> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="10"/> + <attr name="ProbeInterval" type="s32" val="25"/> + <attr name="FullStatisticsInterval" type="s32" val="63"/> + <attr name="ControlsTTCPartitions" type="bool" val="0"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="Timeout" type="u32" val="10000"/> + <attr name="NumberOfAssignThreads" type="u32" val="8"/> + <attr name="ClearGrouping" type="u32" val="100"/> + <rel name="Program" class="Binary" id="hltsv_main"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-pub-32.cern.ch"/> + <rel name="ConfigurationRules" class="ConfigurationRuleBundle" id="HltsvConfigurationRuleBundle"/> + <rel name="RoIBInput" class="RoIBPluginInternal" id="RoIBPluginInternal-1"/> +</obj> + +<obj class="IPCServiceApplication" id="CEP-initial"> + <attr name="InterfaceName" type="string" val="es/ExpertSystem"/> + <attr name="IPCName" type="string" val="CentralES"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="15"/> + <attr name="ExitTimeout" type="u32" val="10"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="RunCtrl_IS"/> + <ref class="IPCServiceApplication" id="Setup_IS"/> + <ref class="IPCServiceApplication" id="RDB_INITIAL"/> + <ref class="IPCServiceApplication" id="MTS_IS"/> + </rel> + <rel name="Program" class="Script" id="ces"/> +</obj> + +<obj class="IPCServiceApplication" id="CHIP"> + <attr name="InterfaceName" type="string" val="es/ExpertSystem"/> + <attr name="IPCName" type="string" val="CentralES"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="15"/> + <attr name="ExitTimeout" type="u32" val="10"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="InfrastructureApplication" id="ipc-server"/> + <ref class="IPCServiceApplication" id="RDB"/> + <ref class="IPCServiceApplication" id="RunCtrl"/> + <ref class="IPCServiceApplication" id="MTS"/> + </rel> + <rel name="Program" class="Script" id="ces"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-02.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="DDC"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="Parameters" type="string" val="-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"/> + <attr name="RestartParameters" type="string" val="-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="mts-worker"/> + </rel> + <rel name="Program" class="Binary" id="is_server"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> + <rel name="BackupHosts"> + <ref class="Computer" id="pc-tbed-pub-22.cern.ch"/> + <ref class="Computer" id="pc-tbed-pub-23.cern.ch"/> + <ref class="Computer" id="pc-tbed-pub-24.cern.ch"/> + </rel> +</obj> + +<obj class="IPCServiceApplication" id="DF"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="Parameters" type="string" val="-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="RestartParameters" type="string" val="-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="SegmentProcEnvVarName" type="string" val="TDAQ_IS_SERVER"/> + <rel name="Program" class="Binary" id="is_server"/> +</obj> + +<obj class="IPCServiceApplication" id="DFConfig"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="Parameters" type="string" val="-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="RestartParameters" type="string" val="-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="SegmentProcEnvVarName" type="string" val="DF_CONFIG_IS_SERVER"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="mts-worker"/> + </rel> + <rel name="Program" class="Binary" id="is_server"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="DQM"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="Parameters" type="string" val="-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="RestartParameters" type="string" val="-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="mts-worker"/> + </rel> + <rel name="Program" class="Binary" id="is_server"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="Histogramming"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="Parameters" type="string" val="-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="RestartParameters" type="string" val="-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="SegmentProcEnvVarName" type="string" val="TDAQ_OH_SERVER"/> + <rel name="Program" class="Binary" id="is_server"/> +</obj> + +<obj class="IPCServiceApplication" id="ISRepository"> + <attr name="InterfaceName" type="string" val="rdb/cursor"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="mts-worker"/> + <ref class="IPCServiceApplication" id="RDB"/> + </rel> + <rel name="Program" class="Script" id="dal_load_is_info_files.sh"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="ISRepository-initial"> + <attr name="InterfaceName" type="string" val="rdb/cursor"/> + <attr name="IPCName" type="string" val="ISRepository"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="mts-worker-initial"/> + <ref class="IPCServiceApplication" id="RDB_INITIAL"/> + </rel> + <rel name="Program" class="Script" id="dal_load_is_info_files.sh"/> +</obj> + +<obj class="IPCServiceApplication" id="LHC"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="IPCName" type="string" val="LHC"/> + <attr name="Parameters" type="string" val="-s -n LHC"/> + <attr name="RestartParameters" type="string" val="-s -n LHC"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="20"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="mts-worker-initial"/> + </rel> + <rel name="Program" class="Binary" id="is_server"/> +</obj> + +<obj class="IPCServiceApplication" id="MTS"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="Parameters" type="string" val="-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="RestartParameters" type="string" val="-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="InfrastructureApplication" id="ipc-server"/> + </rel> + <rel name="Program" class="Binary" id="is_server"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="MTS_IS"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="IPCName" type="string" val="MTS"/> + <attr name="Parameters" type="string" val="-s -n MTS"/> + <attr name="RestartParameters" type="string" val="-s -n MTS"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="Program" class="Binary" id="is_server"/> +</obj> + +<obj class="IPCServiceApplication" id="Monitoring"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="Parameters" type="string" val="-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="RestartParameters" type="string" val="-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="mts-worker"/> + </rel> + <rel name="Program" class="Binary" id="is_server"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="PMG"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="Parameters" type="string" val="-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="RestartParameters" type="string" val="-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="mts-worker"/> + </rel> + <rel name="Program" class="Binary" id="is_server"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="PMG_IS"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="IPCName" type="string" val="PMG"/> + <attr name="Parameters" type="string" val="-s -n PMG "/> + <attr name="RestartParameters" type="string" val="-s -n PMG "/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="mts-worker-initial"/> + </rel> + <rel name="Program" class="Binary" id="is_server"/> +</obj> + +<obj class="IPCServiceApplication" id="RDB"> + <attr name="InterfaceName" type="string" val="rdb/cursor"/> + <attr name="Parameters" type="string" val=" -D $(TDAQ_DB_DATA) -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"/> + <attr name="RestartParameters" type="string" val=" -D $(TDAQ_DB_DATA) -r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="InfrastructureApplication" id="ipc-server"/> + </rel> + <rel name="Program" class="Binary" id="rdb_server"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="RDB_INITIAL"> + <attr name="InterfaceName" type="string" val="rdb/cursor"/> + <attr name="Parameters" type="string" val="-D $(TDAQ_DB_DATA) -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"/> + <attr name="RestartParameters" type="string" val="-D $(TDAQ_DB_DATA) -r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="SegmentProcEnvVarName" type="string" val="TDAQ_DB_NAME"/> + <rel name="Program" class="Binary" id="rdb_server"/> +</obj> + +<obj class="IPCServiceApplication" id="RDB_RW"> + <attr name="InterfaceName" type="string" val="rdb/writer"/> + <attr name="Parameters" type="string" val="-D $(TDAQ_DB_DATA) -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"/> + <attr name="RestartParameters" type="string" val="-D $(TDAQ_DB_DATA) -r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="InfrastructureApplication" id="ipc-server"/> + </rel> + <rel name="Program" class="Binary" id="rdb_writer"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="OKS_VERBOSE"/> + </rel> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="Resources"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="Parameters" type="string" val="-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="RestartParameters" type="string" val="-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="mts-worker"/> + </rel> + <rel name="Program" class="Binary" id="is_server"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="RunCtrl"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="Parameters" type="string" val="-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 5"/> + <attr name="RestartParameters" type="string" val="-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 5"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="InfrastructureApplication" id="ipc-server"/> + </rel> + <rel name="Program" class="Binary" id="is_server"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="RunCtrlStatistics"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="Parameters" type="string" val="-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 5"/> + <attr name="RestartParameters" type="string" val="-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 5"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="InfrastructureApplication" id="ipc-server"/> + </rel> + <rel name="Program" class="Binary" id="is_server"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="RunCtrl_IS"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="IPCName" type="string" val="RunCtrl"/> + <attr name="Parameters" type="string" val="-s -n RunCtrl"/> + <attr name="RestartParameters" type="string" val="-s -n RunCtrl"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="Program" class="Binary" id="is_server"/> +</obj> + +<obj class="IPCServiceApplication" id="RunParams"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="Parameters" type="string" val="-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 5"/> + <attr name="RestartParameters" type="string" val="-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 5"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="mts-worker"/> + </rel> + <rel name="Program" class="Binary" id="is_server"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="RunParams_IS"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="IPCName" type="string" val="RunParams"/> + <attr name="Parameters" type="string" val="-s -n RunParams"/> + <attr name="RestartParameters" type="string" val="-s -n RunParams"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="Program" class="Binary" id="is_server"/> +</obj> + +<obj class="IPCServiceApplication" id="Setup"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="Parameters" type="string" val="-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="RestartParameters" type="string" val="-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="InfrastructureApplication" id="ipc-server"/> + </rel> + <rel name="Program" class="Binary" id="is_server"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="Setup_IS"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="IPCName" type="string" val="Setup"/> + <attr name="Parameters" type="string" val="-s -n Setup"/> + <attr name="RestartParameters" type="string" val="-s -n Setup "/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="Program" class="Binary" id="is_server"/> +</obj> + +<obj class="IPCServiceApplication" id="monitoring-conductor"> + <attr name="InterfaceName" type="string" val="EventMonitoring/Conductor"/> + <attr name="IPCName" type="string" val="Conductor"/> + <attr name="Parameters" type="string" val="-s -p ${TDAQ_PARTITION}"/> + <attr name="RestartParameters" type="string" val="-s -p ${TDAQ_PARTITION}"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="mts-worker"/> + </rel> + <rel name="Program" class="Binary" id="emon_conductor"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="mts-worker"> + <attr name="InterfaceName" type="string" val="mts/worker"/> + <attr name="Parameters" type="string" val="-s "/> + <attr name="RestartParameters" type="string" val="-s"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="10"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="MTS"/> + </rel> + <rel name="Program" class="Binary" id="mts_worker"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="WARNING_STREAM_NOMTS"/> + <ref class="Variable" id="INFO_STREAM_NOMTS"/> + <ref class="Variable" id="ERROR_STREAM_NOMTS"/> + <ref class="Variable" id="FATAL_STREAM_NOMTS"/> + <ref class="Variable" id="OKS_DB_ROOT"/> + </rel> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="IPCServiceApplication" id="mts-worker-initial"> + <attr name="InterfaceName" type="string" val="mts/worker"/> + <attr name="Parameters" type="string" val="-s "/> + <attr name="RestartParameters" type="string" val="-s"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="10"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="MTS_IS"/> + </rel> + <rel name="Program" class="Binary" id="mts_worker"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="OKS_DB_ROOT"/> + <ref class="Variable" id="ERROR_STREAM_NOMTS"/> + <ref class="Variable" id="FATAL_STREAM_NOMTS"/> + <ref class="Variable" id="INFO_STREAM_NOMTS"/> + <ref class="Variable" id="WARNING_STREAM_NOMTS"/> + </rel> +</obj> + +<obj class="IPCServiceApplication" id="rm-server"> + <attr name="InterfaceName" type="string" val="rmgr/ResMgr"/> + <attr name="IPCName" type="string" val="RM_Server"/> + <attr name="Parameters" type="string" val="-n RM_Server -r -l ${TDAQ_BACKUP_PATH}/env{TDAQ_APPLICATION_NAME}.backup"/> + <attr name="RestartParameters" type="string" val="-n RM_Server "/> + <attr name="Logging" type="bool" val="1"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Restart"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="Program" class="Binary" id="rmgr_server"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="INFO_STREAM_NOMTS"/> + <ref class="Variable" id="WARNING_STREAM_NOMTS"/> + <ref class="Variable" id="ORBmaxServerThreadPoolSize"/> + <ref class="Variable" id="ORBthreadPerConnectionPolicy"/> + <ref class="Variable" id="TDAQ_RM_CONFIG"/> + </rel> +</obj> + +<obj class="IPCServiceTemplateApplication" id="DF_Histogramming"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="Parameters" type="string" val="-s -p env(TDAQ_PARTITION) -n env(TDAQ_APPLICATION_NAME)"/> + <attr name="RestartParameters" type="string" val="-s -p env(TDAQ_PARTITION) -n env(TDAQ_APPLICATION_NAME)"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="FirstHost"/> + <attr name="SegmentProcEnvVarName" type="string" val="TDAQ_OH_SERVER"/> + <attr name="SegmentProcEnvVarParentName" type="string" val="PARENT_OH_SERVER"/> + <rel name="Program" class="Binary" id="is_server"/> +</obj> + +<obj class="IPCServiceTemplateApplication" id="DF_IS"> + <attr name="InterfaceName" type="string" val="is/repository"/> + <attr name="Parameters" type="string" val="-s -p env(TDAQ_PARTITION) -n env(TDAQ_APPLICATION_NAME)"/> + <attr name="RestartParameters" type="string" val="-s -p env(TDAQ_PARTITION) -n env(TDAQ_APPLICATION_NAME)"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="FirstHost"/> + <attr name="SegmentProcEnvVarName" type="string" val="TDAQ_IS_SERVER"/> + <attr name="SegmentProcEnvVarParentName" type="string" val="PARENT_IS_SERVER"/> + <rel name="Program" class="Binary" id="is_server"/> +</obj> + +<obj class="IPCServiceTemplateApplication" id="DefRDB"> + <attr name="InterfaceName" type="string" val="rdb/cursor"/> + <attr name="Parameters" type="string" val="-s -o RDB -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup ${TDAQ_RDB_THREADING}"/> + <attr name="RestartParameters" type="string" val="-s -o RDB -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup ${TDAQ_RDB_THREADING}"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="FirstHost"/> + <attr name="SegmentProcEnvVarName" type="string" val="TDAQ_DB_NAME"/> + <attr name="SegmentProcEnvVarParentName" type="string" val="TDAQ_DB_PARENT_NAME"/> + <rel name="Program" class="Binary" id="rdb_server"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="TEMPLATE_RDB_IPC_TIMEOUT"/> + </rel> +</obj> + +<obj class="ISPublishingParameters" id="DcmISPublishingParameters"> + <attr name="PublishInterval" type="u32" val="5"/> + <attr name="NumberOfSlots" type="u32" val="1"/> + <attr name="ISServer" type="string" val="${TDAQ_IS_SERVER=DF}"/> +</obj> + +<obj class="ISPublishingParameters" id="DefaultISPublishingParameters"> + <attr name="PublishInterval" type="u32" val="5"/> + <attr name="NumberOfSlots" type="u32" val="1"/> + <attr name="ISServer" type="string" val="${TDAQ_IS_SERVER=DF}"/> +</obj> + +<obj class="ISPublishingParameters" id="HltpuISPublishingParameters"> + <attr name="PublishInterval" type="u32" val="5"/> + <attr name="NumberOfSlots" type="u32" val="1"/> + <attr name="ISServer" type="string" val="${TDAQ_IS_SERVER=DF}"/> +</obj> + +<obj class="ISPublishingParameters" id="HltsvISPublishingParameters"> + <attr name="PublishInterval" type="u32" val="5"/> + <attr name="NumberOfSlots" type="u32" val="1"/> + <attr name="ISServer" type="string" val="DF"/> +</obj> + +<obj class="ISPublishingParameters" id="SfoWiosDFISPublishingParameters"> + <attr name="PublishInterval" type="u32" val="5"/> + <attr name="NumberOfSlots" type="u32" val="1"/> + <attr name="ISServer" type="string" val="DF"/> +</obj> + +<obj class="IS_EventsAndRates" id="part_hlt_jholm-hlt-counter"> + <attr name="EventCounter" type="string" val="DF.HLTSV.Events.ProcessedEvents"/> + <attr name="Rate" type="string" val="DF.HLTSV.Events.Rate"/> + <attr name="Description" type="string" val="HLT Counter"/> +</obj> + +<obj class="IS_EventsAndRates" id="part_hlt_jholm-lvl1-counter"> + <attr name="EventCounter" type="string" val="DF.HLTSV.Events.LVL1Events"/> + <attr name="Description" type="string" val="LVL1 Counter"/> +</obj> + +<obj class="IS_EventsAndRates" id="part_hlt_jholm-recording-counter"> + <attr name="EventCounter" type="string" val="DF_IS:HLT.SFO-1.Counters.Global.WritingTotalEvents"/> + <attr name="Rate" type="string" val="DF_IS:HLT.SFO-1.Counters.Global.WritingEventRate"/> + <attr name="Description" type="string" val="Recording Counter"/> +</obj> + +<obj class="IS_InformationSources" id="part_hlt_jholm-counters"> + <rel name="LVL1" class="IS_EventsAndRates" id="part_hlt_jholm-lvl1-counter"/> + <rel name="HLT" class="IS_EventsAndRates" id="part_hlt_jholm-hlt-counter"/> + <rel name="Recording" class="IS_EventsAndRates" id="part_hlt_jholm-recording-counter"/> +</obj> + +<obj class="InfrastructureApplication" id="RDB_POOL_1"> + <attr name="Parameters" type="string" val="-m RDB -g RDB -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"/> + <attr name="RestartParameters" type="string" val=" -m RDB -g RDB -r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Restart"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="RDB"/> + </rel> + <rel name="Program" class="Binary" id="rdb_server"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="InfrastructureApplication" id="ipc-server"> + <attr name="Parameters" type="string" val="-s -p ${TDAQ_PARTITION} -b -d ${TDAQ_BACKUP_PATH} -r"/> + <attr name="RestartParameters" type="string" val="-s -p ${TDAQ_PARTITION} -b -r -d ${TDAQ_BACKUP_PATH}"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="ShutdownDependsFrom"> + <ref class="IPCServiceApplication" id="DF"/> + <ref class="IPCServiceApplication" id="DQM"/> + <ref class="IPCServiceApplication" id="Histogramming"/> + <ref class="IPCServiceApplication" id="ISRepository"/> + <ref class="IPCServiceApplication" id="Monitoring"/> + <ref class="IPCServiceApplication" id="PMG"/> + <ref class="IPCServiceApplication" id="RDB"/> + <ref class="IPCServiceApplication" id="RDB_RW"/> + <ref class="IPCServiceApplication" id="RunCtrl"/> + <ref class="IPCServiceApplication" id="RunCtrlStatistics"/> + <ref class="IPCServiceApplication" id="RunParams"/> + <ref class="IPCServiceApplication" id="Setup"/> + <ref class="IPCServiceApplication" id="monitoring-conductor"/> + <ref class="IPCServiceApplication" id="mts-worker"/> + <ref class="IPCServiceApplication" id="DDC"/> + <ref class="IPCServiceApplication" id="MTS"/> + <ref class="IPCServiceApplication" id="CHIP"/> + <ref class="IPCServiceApplication" id="Resources"/> + </rel> + <rel name="Program" class="Binary" id="ipc_server"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="InfrastructureApplication" id="logger"> + <attr name="Parameters" type="string" val="-e mts -S * -t ${TDAQ_VERSION} -p ${TDAQ_PARTITION} -c ${LOGGER_CONNECT}"/> + <attr name="RestartParameters" type="string" val="-e mts -S * -t ${TDAQ_VERSION} -p ${TDAQ_PARTITION} -c ${LOGGER_CONNECT}"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Restart"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="mts-worker"/> + <ref class="InfrastructureApplication" id="ipc-server"/> + </rel> + <rel name="Program" class="Binary" id="lsReceiver"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="InfrastructureApplication" id="oks2coral-initial"> + <attr name="Parameters" type="string" val="-c ${OKS2CORAL_CONNECT} -w ${OKS2CORAL_WORKING_SCHEMA} -r ${OKS2CORAL_TMP_DIR}"/> + <attr name="RestartParameters" type="string" val="-c ${OKS2CORAL_CONNECT} -w ${OKS2CORAL_WORKING_SCHEMA} -r ${OKS2CORAL_TMP_DIR}"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="mts-worker-initial"/> + </rel> + <rel name="Program" class="Binary" id="oks2coral"/> + <rel name="ProcessEnvironment"> + <ref class="VariableSet" id="External-environment"/> + <ref class="Variable" id="CORAL_AUTH_PATH"/> + </rel> +</obj> + +<obj class="InfrastructureApplication" id="opmon"> + <attr name="Parameters" type="string" val="-p ${TDAQ_PARTITION} -P /tmp -w -t"/> + <attr name="RestartParameters" type="string" val="-p ${TDAQ_PARTITION} -P /tmp -w -t"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Restart"/> + <attr name="IfFailsToStart" type="enum" val="Ignore"/> + <rel name="InitializationDependsFrom"> + <ref class="IPCServiceApplication" id="RunCtrl"/> + <ref class="IPCServiceApplication" id="Histogramming"/> + </rel> + <rel name="Program" class="Binary" id="opmon_monitor"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="InfrastructureTemplateApplication" id="RackCoralProxy"> + <attr name="Parameters" type="string" val="-v -m -p 3320 -s 3320 env(TDAQ_CORAL_PROXY_PARENT)"/> + <attr name="RestartParameters" type="string" val="-v -m -p 3320 -s 3320 env(TDAQ_CORAL_PROXY_PARENT)"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="FirstHost"/> + <attr name="SegmentProcEnvVarName" type="string" val="TDAQ_CORAL_PROXY_HOST"/> + <attr name="SegmentProcEnvVarParentName" type="string" val="TDAQ_CORAL_PROXY_PARENT"/> + <attr name="SegmentProcEnvVarValue" type="enum" val="runsOn"/> + <rel name="Program" class="Binary" id="coralServerProxy"/> +</obj> + +<obj class="InfrastructureTemplateApplication" id="TopCoralProxy"> + <attr name="Parameters" type="string" val="-v -m -p 3320 -s 40017 env(TDAQ_CORAL_PROXY_PARENT)"/> + <attr name="RestartParameters" type="string" val="-v -m -p 3320 -s 40017 env(TDAQ_CORAL_PROXY_PARENT)"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="FirstHost"/> + <attr name="SegmentProcEnvVarName" type="string" val="TDAQ_CORAL_PROXY_HOST"/> + <attr name="SegmentProcEnvVarParentName" type="string" val="TDAQ_CORAL_PROXY_PARENT"/> + <attr name="SegmentProcEnvVarValue" type="enum" val="runsOn"/> + <rel name="Program" class="Binary" id="coralServerProxy"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111705"> + <attr name="Id" type="u32" val="1120005"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111706"> + <attr name="Id" type="u32" val="1120006"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111707"> + <attr name="Id" type="u32" val="1120007"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111708"> + <attr name="Id" type="u32" val="1120008"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111709"> + <attr name="Id" type="u32" val="1120009"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111710"> + <attr name="Id" type="u32" val="1120016"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111711"> + <attr name="Id" type="u32" val="1120017"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111712"> + <attr name="Id" type="u32" val="1120018"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111714"> + <attr name="Id" type="u32" val="1120020"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111715"> + <attr name="Id" type="u32" val="1120021"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111716"> + <attr name="Id" type="u32" val="1120022"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111717"> + <attr name="Id" type="u32" val="1120023"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111718"> + <attr name="Id" type="u32" val="1120024"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111719"> + <attr name="Id" type="u32" val="1120025"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111720"> + <attr name="Id" type="u32" val="1120032"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111721"> + <attr name="Id" type="u32" val="1120033"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111805"> + <attr name="Id" type="u32" val="1120261"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111806"> + <attr name="Id" type="u32" val="1120262"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111807"> + <attr name="Id" type="u32" val="1120263"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111808"> + <attr name="Id" type="u32" val="1120264"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111809"> + <attr name="Id" type="u32" val="1120265"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111810"> + <attr name="Id" type="u32" val="1120272"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111811"> + <attr name="Id" type="u32" val="1120273"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111812"> + <attr name="Id" type="u32" val="1120274"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111814"> + <attr name="Id" type="u32" val="1120276"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111815"> + <attr name="Id" type="u32" val="1120277"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111816"> + <attr name="Id" type="u32" val="1120278"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111817"> + <attr name="Id" type="u32" val="1120279"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111818"> + <attr name="Id" type="u32" val="1120280"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111819"> + <attr name="Id" type="u32" val="1120281"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111820"> + <attr name="Id" type="u32" val="1120288"/> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> +</obj> + +<obj class="JarFile" id="DF_IS_Info.jar"> + <attr name="BinaryName" type="string" val="DF_IS_Info.jar"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="DFdal.jar"> + <attr name="BinaryName" type="string" val="DFdal.jar"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="ESInterface.jar"> + <attr name="BinaryName" type="string" val="ESInterface.jar"/> + <attr name="Description" type="string" val="Library for RC to ES communication and ES idl interface"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="Igui.Common.jar"> + <attr name="BinaryName" type="string" val="Igui.Common.jar"/> + <attr name="Description" type="string" val="jar for IGUI containing common classes"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="Igui.jar"> + <attr name="BinaryName" type="string" val="Igui.jar"/> + <attr name="Description" type="string" val="jar for IGUI"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="IguiCommander.jar"> + <attr name="BinaryName" type="string" val="IguiCommander.jar"/> + <attr name="Description" type="string" val="jar for IGUI idl interface"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="IguiPanels.jar"> + <attr name="BinaryName" type="string" val="IguiPanels.jar"/> + <attr name="Description" type="string" val="jar for different Igui panels"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="PmgGui.jar"> + <attr name="BinaryName" type="string" val="PmgGui.jar"/> + <attr name="Description" type="string" val="jar for the ProcessManager GUI"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="RCInfo.jar"> + <attr name="BinaryName" type="string" val="RCInfo.jar"/> + <attr name="Description" type="string" val="jar for IS information about DAQ applications, RC states, run parameters and conditions"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="RODBusydal.jar"> + <attr name="BinaryName" type="string" val="RODBusydal.jar"/> + <attr name="Description" type="string" val="jar for the Central Expert System (CES)"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="ROSModulesNP_IS.jar"> + <attr name="BinaryName" type="string" val="ROSModulesNP_IS.jar"/> + <attr name="Description" type="string" val="ROS NPReadoutModule IS java classes"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="ROSModules_IS.jar"> + <attr name="BinaryName" type="string" val="ROSModules_IS.jar"/> + <attr name="Description" type="string" val="ROS ReadoutModule IS java classes"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="RmGui.jar"> + <attr name="BinaryName" type="string" val="RmGui.jar"/> + <attr name="Description" type="string" val="jar for the ResourceManager GUI"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="RunControl.jar"> + <attr name="BinaryName" type="string" val="RunControl.jar"/> + <attr name="Description" type="string" val="jar for sending commands to RC applications"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="TTCInfo.jar"> + <attr name="BinaryName" type="string" val="TTCInfo.jar"/> + <attr name="Description" type="string" val="jar for IS information about TTC applications, run parameters and conditions"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="TriggerCommander.jar"> + <attr name="BinaryName" type="string" val="TriggerCommander.jar"/> + <attr name="Description" type="string" val="jar for the MasterTrigger and the AutoPrescaler"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="ces.jar"> + <attr name="BinaryName" type="string" val="ces.jar"/> + <attr name="Description" type="string" val="jar for the Central Expert System (CES)"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="cocadal.jar"> + <attr name="BinaryName" type="string" val="cocadal.jar"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="config.jar"> + <attr name="BinaryName" type="string" val="config.jar"/> + <attr name="Description" type="string" val="contains classes providing abstract interface to database information"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="coral_auth.jar"> + <attr name="BinaryName" type="string" val="coral_auth.jar"/> + <attr name="Description" type="string" val="jar for Coral authentication"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="dal.jar"> + <attr name="BinaryName" type="string" val="dal.jar"/> + <attr name="Description" type="string" val="automatically generated dal for database classes defined by the core.schema.xml"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="ddcInfo.jar"> + <attr name="BinaryName" type="string" val="ddcInfo.jar"/> + <attr name="Description" type="string" val="jar for IS information about DCS IS types."/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="elisaJClientAPI-Helper_get.jar"> + <attr name="BinaryName" type="string" val="elisaJClientAPI-Helper_get.jar"/> + <attr name="Description" type="string" val="jar for java wrapper to use ELisA API"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="elisaJClientAPI-Helper_insert.jar"> + <attr name="BinaryName" type="string" val="elisaJClientAPI-Helper_insert.jar"/> + <attr name="Description" type="string" val="jar for java wrapper to use ELisA API"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="elisaJClientAPI.jar"> + <attr name="BinaryName" type="string" val="elisaJClientAPI.jar"/> + <attr name="Description" type="string" val="jar for java client API"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="ers.jar"> + <attr name="BinaryName" type="string" val="ers.jar"/> + <attr name="Description" type="string" val="jar for the error report system"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="esperUtils.jar"> + <attr name="BinaryName" type="string" val="esperUtils.jar"/> + <attr name="Description" type="string" val="jar containing shared esper utility classes"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="external.jar"> + <attr name="BinaryName" type="string" val="external.jar"/> + <attr name="Description" type="string" val="Collection of externals jars"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="ipc.jar"> + <attr name="BinaryName" type="string" val="ipc.jar"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="is.jar"> + <attr name="BinaryName" type="string" val="is.jar"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="jTm.jar"> + <attr name="BinaryName" type="string" val="jTm.jar"/> + <attr name="Description" type="string" val="jar for the jTestManager (jTm.jar)"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="jeformat.jar"> + <attr name="BinaryName" type="string" val="jeformat.jar"/> + <attr name="Description" type="string" val="jar for eformat"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="logManager.jar"> + <attr name="BinaryName" type="string" val="logManager.jar"/> + <attr name="Description" type="string" val="User interface to view the log messages"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="mdadal.jar"> + <attr name="BinaryName" type="string" val="mdadal.jar"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="mts.jar"> + <attr name="BinaryName" type="string" val="mts.jar"/> + <attr name="Description" type="string" val="jar for message transfer system"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="oksconfig.jar"> + <attr name="BinaryName" type="string" val="oksconfig.jar"/> + <attr name="Description" type="string" val="implements config interface to oks using JNI"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="pmg.jar"> + <attr name="BinaryName" type="string" val="pmg.jar"/> + <attr name="Description" type="string" val="jar for the PMG commands and IS information"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="pmgsync.jar"> + <attr name="BinaryName" type="string" val="pmgsync.jar"/> + <attr name="Description" type="string" val="it implements the PMG sync mechanism via JNI"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="rdb.jar"> + <attr name="BinaryName" type="string" val="rdb.jar"/> + <attr name="Description" type="string" val="implements interface to remote database server"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="rdbconfig.jar"> + <attr name="BinaryName" type="string" val="rdbconfig.jar"/> + <attr name="Description" type="string" val="implements config interface to remote database server"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="res-info-utils.jar"> + <attr name="BinaryName" type="string" val="res-info-utils.jar"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="rmgr.jar"> + <attr name="BinaryName" type="string" val="rmgr.jar"/> + <attr name="Description" type="string" val="jar for resource manager"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="JarFile" id="testdal.jar"> + <attr name="BinaryName" type="string" val="testdal.jar"/> + <attr name="Description" type="string" val="automatically generated dal for database classes defined by the test_repository.schema.xml"/> + <attr name="HelpURL" type="string" val="http://"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="L1TriggerConfiguration" id="L1TrigConf"> + <attr name="ConfigureLvl1MenuFrom" type="enum" val="DB"/> +</obj> + +<obj class="MIGApplication" id="DefMIG-IS"> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="10"/> + <attr name="ProbeInterval" type="s32" val="25"/> + <attr name="FullStatisticsInterval" type="s32" val="63"/> + <attr name="IfError" type="enum" val="Ignore"/> + <attr name="ControlsTTCPartitions" type="bool" val="0"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="FirstHost"/> + <attr name="LibraryPaths" type="string"> + <data val="libMIGContainers.so"/> + </attr> + <rel name="Program" class="Binary" id="MonInfoGatherer"/> + <rel name="Configurations"> + <ref class="MIGConfiguration" id="TDAQ_IS_Conf"/> + </rel> +</obj> + +<obj class="MIGApplication" id="DefMIG-OH"> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="10"/> + <attr name="ProbeInterval" type="s32" val="25"/> + <attr name="FullStatisticsInterval" type="s32" val="63"/> + <attr name="IfError" type="enum" val="Ignore"/> + <attr name="ControlsTTCPartitions" type="bool" val="0"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="FirstHost"/> + <attr name="LibraryPaths" type="string"> + <data val="libMIGContainers.so"/> + </attr> + <rel name="Program" class="Binary" id="MonInfoGatherer"/> + <rel name="Configurations"> + <ref class="MIGConfiguration" id="TDAQ_OH_Conf"/> + </rel> +</obj> + +<obj class="MIGApplication" id="TopMIG-IS"> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="10"/> + <attr name="ProbeInterval" type="s32" val="25"/> + <attr name="FullStatisticsInterval" type="s32" val="63"/> + <attr name="IfError" type="enum" val="Ignore"/> + <attr name="ControlsTTCPartitions" type="bool" val="0"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="FirstHost"/> + <attr name="LibraryPaths" type="string"> + <data val="libMIGContainers.so"/> + </attr> + <rel name="Program" class="Binary" id="MonInfoGatherer"/> + <rel name="Configurations"> + <ref class="MIGConfiguration" id="Top_TDAQ_IS_Conf"/> + </rel> +</obj> + +<obj class="MIGApplication" id="TopMIG-OH"> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="10"/> + <attr name="ProbeInterval" type="s32" val="25"/> + <attr name="FullStatisticsInterval" type="s32" val="63"/> + <attr name="IfError" type="enum" val="Ignore"/> + <attr name="ControlsTTCPartitions" type="bool" val="0"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="FirstHost"/> + <attr name="LibraryPaths" type="string"> + <data val="libMIGContainers.so"/> + </attr> + <rel name="Program" class="Binary" id="MonInfoGatherer"/> + <rel name="Configurations"> + <ref class="MIGConfiguration" id="Top_TDAQ_OH_Conf"/> + </rel> +</obj> + +<obj class="MIGConfiguration" id="TDAQ_IS_Conf"> + <attr name="ProviderRegExp" type="string" val=".*"/> + <attr name="ObjectRegExp" type="string" val=".*"/> + <rel name="SourceServers"> + <ref class="IPCServiceTemplateApplication" id="DF_IS"/> + </rel> + <rel name="DestinationServers"> + <ref class="IPCServiceTemplateApplication" id="DF_IS"/> + </rel> + <rel name="MatchHandlers"> + <ref class="MIGMatchHandler" id="MIGDefaultHandler"/> + </rel> +</obj> + +<obj class="MIGConfiguration" id="TDAQ_OH_Conf"> + <attr name="ProviderRegExp" type="string" val=".*"/> + <attr name="ObjectRegExp" type="string" val=".*"/> + <rel name="SourceServers"> + <ref class="IPCServiceTemplateApplication" id="DF_Histogramming"/> + </rel> + <rel name="DestinationServers"> + <ref class="IPCServiceTemplateApplication" id="DF_Histogramming"/> + </rel> + <rel name="MatchHandlers"> + <ref class="MIGMatchHandler" id="MIGDefaultHandler"/> + </rel> +</obj> + +<obj class="MIGConfiguration" id="Top_TDAQ_IS_Conf"> + <attr name="ProviderRegExp" type="string" val=".*"/> + <attr name="ObjectRegExp" type="string" val=".*"/> + <rel name="SourceServers"> + <ref class="IPCServiceTemplateApplication" id="DF_IS"/> + </rel> + <rel name="DestinationServers"> + <ref class="IPCServiceApplication" id="DF"/> + </rel> + <rel name="MatchHandlers"> + <ref class="MIGMatchHandler" id="MIGDefaultHandler"/> + </rel> +</obj> + +<obj class="MIGConfiguration" id="Top_TDAQ_OH_Conf"> + <attr name="ProviderRegExp" type="string" val=".*"/> + <attr name="ObjectRegExp" type="string" val=".*"/> + <rel name="SourceServers"> + <ref class="IPCServiceTemplateApplication" id="DF_Histogramming"/> + </rel> + <rel name="DestinationServers"> + <ref class="IPCServiceApplication" id="Histogramming"/> + </rel> + <rel name="MatchHandlers"> + <ref class="MIGMatchHandler" id="MIGDefaultHandler"/> + </rel> +</obj> + +<obj class="MIGMatchHandler" id="MIGDefaultHandler"> + <attr name="ObjectRegExp" type="string" val=".*"/> + <attr name="Name" type="string" val="Default"/> +</obj> + +<obj class="MasterTrigger" id="HLTSVMaster"> + <rel name="Controller" class="HLTSVApplication" id="HLTSV"/> +</obj> + +<obj class="MemoryPool" id="ROS-Segment-1-MemoryPool"> + <attr name="Type" type="enum" val="MALLOC"/> + <attr name="NumberOfPages" type="u32" val="32"/> + <attr name="PageSize" type="u32" val="100"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-hltsv-00.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.172.17"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-hltsv-01.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.172.18"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-hltsv-02.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.172.19"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-13.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.38.53"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-14.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.38.52"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-15.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.38.51"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-15.cern.ch-eth2"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.147.0.15"/> + <attr name="InterfaceName" type="string" val="eth2"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-15.cern.ch-vlan146"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.146.0.15"/> + <attr name="InterfaceName" type="string" val="vlan146"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-15.cern.ch-vlan149"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.149.0.15"/> + <attr name="InterfaceName" type="string" val="vlan149"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-16.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.38.50"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-16.cern.ch-eth2"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.147.0.16"/> + <attr name="InterfaceName" type="string" val="eth2"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-16.cern.ch-vlan146"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.146.0.16"/> + <attr name="InterfaceName" type="string" val="vlan146"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-16.cern.ch-vlan149"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.149.0.16"/> + <attr name="InterfaceName" type="string" val="vlan149"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-17.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.38.49"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-17.cern.ch-eth2"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.147.0.17"/> + <attr name="InterfaceName" type="string" val="eth2"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-17.cern.ch-vlan146"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.146.0.17"/> + <attr name="InterfaceName" type="string" val="vlan146"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-17.cern.ch-vlan149"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.149.0.17"/> + <attr name="InterfaceName" type="string" val="vlan149"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-18.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.38.48"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-18.cern.ch-eth2"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.147.0.18"/> + <attr name="InterfaceName" type="string" val="eth2"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-18.cern.ch-vlan146"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.146.0.18"/> + <attr name="InterfaceName" type="string" val="vlan146"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-18.cern.ch-vlan149"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.149.0.18"/> + <attr name="InterfaceName" type="string" val="vlan149"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-19.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.38.47"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-20.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.38.46"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-net-21.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.38.45"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-onl-01.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.6.75"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-onl-02.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.6.76"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-21.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.75"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-22.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.77"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-23.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.80"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-24.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.83"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-25.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.85"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-26.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.87"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-27.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.89"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-28.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.91"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-29.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.93"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-30.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.95"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-31.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.97"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-32.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.99"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-33.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.101"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-34.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.103"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-35.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.105"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-pub-36.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="188.184.2.107"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05001.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.49"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05002.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.50"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05003.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.51"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05004.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.52"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05005.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.53"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05006.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.54"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05007.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.55"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05008.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.56"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05009.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.57"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05010.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.58"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05011.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.59"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05012.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.60"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05013.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.61"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05014.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.62"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05015.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.63"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05016.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.64"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05017.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.65"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05018.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.66"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05019.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.67"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05020.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.68"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05021.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.69"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05022.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.70"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05023.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.71"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05024.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.72"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05025.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.73"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05026.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.74"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05027.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.75"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05028.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.76"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05029.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.77"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05030.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.78"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05031.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.79"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05032.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.80"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05033.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.45"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05034.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.46"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05035.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.47"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-05036.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.162.48"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06001.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.51"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06002.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.52"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06003.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.53"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06004.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.54"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06005.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.55"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06006.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.56"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06007.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.57"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06008.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.58"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06009.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.59"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06010.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.60"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06012.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.62"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06013.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.63"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06014.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.64"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06015.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.65"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06016.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.66"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06017.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.67"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06018.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.68"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06019.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.69"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06020.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.70"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06021.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.71"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06022.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.72"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06023.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.73"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06024.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.74"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06025.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.75"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06026.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.76"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06027.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.77"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06028.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.78"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06029.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.79"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06030.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.80"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06031.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.81"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06032.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.82"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06033.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.47"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06034.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.48"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06035.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.49"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-06036.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.164.50"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07001.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.16"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07002.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.17"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07003.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.18"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07004.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.19"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07005.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.20"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07006.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.21"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07007.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.22"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07008.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.23"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07009.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.24"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07010.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.25"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07011.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.26"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07012.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.27"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07013.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.28"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07014.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.29"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07015.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.30"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07016.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.31"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07017.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.32"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07018.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.33"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07019.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.34"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07020.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.35"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07021.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.36"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07022.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.37"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07023.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.38"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07024.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.39"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07025.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.40"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07026.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.41"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07027.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.42"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07028.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.43"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07029.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.44"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07030.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.45"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="pc-tbed-tpu-07031.cern.ch-dc1"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.166.46"/> + <attr name="InterfaceName" type="string" val="dc1"/> +</obj> + +<obj class="NetworkInterface" id="vm-tbed-onl-01.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.2.72"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="NetworkInterface" id="vm-tbed-onl-02.cern.ch-eth0"> + <attr name="State" type="bool" val="1"/> + <attr name="IPAddress" type="string" val="10.193.2.80"/> + <attr name="InterfaceName" type="string" val="eth0"/> +</obj> + +<obj class="OHPublishingParameters" id="DcmOHPublishingParameters"> + <attr name="PublishInterval" type="u32" val="20"/> + <attr name="NumberOfSlots" type="u32" val="1"/> + <attr name="OHServer" type="string" val="${TDAQ_OH_SERVER=Histogramming}"/> + <attr name="ROOTProvider" type="string" val="${TDAQ_APPLICATION_NAME}"/> +</obj> + +<obj class="OHPublishingParameters" id="DefaultOHPublishingParameters"> + <attr name="PublishInterval" type="u32" val="5"/> + <attr name="NumberOfSlots" type="u32" val="1"/> + <attr name="OHServer" type="string" val="${TDAQ_OH_SERVER=Histogramming}"/> + <attr name="ROOTProvider" type="string" val="${TDAQ_APPLICATION_NAME}"/> +</obj> + +<obj class="OHPublishingParameters" id="HltpuOHPublishingParameters"> + <attr name="PublishInterval" type="u32" val="80"/> + <attr name="NumberOfSlots" type="u32" val="1"/> + <attr name="OHServer" type="string" val="${TDAQ_OH_SERVER=Histogramming}"/> + <attr name="ROOTProvider" type="string" val="${TDAQ_APPLICATION_NAME}"/> +</obj> + +<obj class="OHPublishingParameters" id="HltsvOHPublishingParameters"> + <attr name="PublishInterval" type="u32" val="5"/> + <attr name="NumberOfSlots" type="u32" val="1"/> + <attr name="OHServer" type="string" val="Histogramming"/> + <attr name="ROOTProvider" type="string" val="${TDAQ_APPLICATION_NAME}"/> +</obj> + +<obj class="OnlineSegment" id="setup"> + <attr name="T0_ProjectTag" type="string"> + <data val="data_test"/> + </attr> + <rel name="Infrastructure"> + <ref class="InfrastructureApplication" id="ipc-server"/> + <ref class="IPCServiceApplication" id="RDB"/> + <ref class="IPCServiceApplication" id="Setup"/> + <ref class="IPCServiceApplication" id="RunCtrl"/> + <ref class="IPCServiceApplication" id="MTS"/> + <ref class="IPCServiceApplication" id="mts-worker"/> + <ref class="IPCServiceApplication" id="RDB_RW"/> + <ref class="IPCServiceApplication" id="ISRepository"/> + <ref class="IPCServiceApplication" id="PMG"/> + <ref class="IPCServiceApplication" id="RunParams"/> + <ref class="IPCServiceApplication" id="RunCtrlStatistics"/> + <ref class="IPCServiceApplication" id="DF"/> + <ref class="IPCServiceApplication" id="Monitoring"/> + <ref class="IPCServiceApplication" id="Histogramming"/> + <ref class="IPCServiceApplication" id="monitoring-conductor"/> + <ref class="IPCServiceApplication" id="DQM"/> + <ref class="IPCServiceApplication" id="DDC"/> + <ref class="InfrastructureApplication" id="RDB_POOL_1"/> + <ref class="IPCServiceApplication" id="DFConfig"/> + <ref class="IPCServiceApplication" id="CHIP"/> + <ref class="IPCServiceApplication" id="Resources"/> + </rel> + <rel name="Applications"> + <ref class="RunControlApplication" id="ResInfoProvider"/> + </rel> + <rel name="ProcessEnvironment"> + <ref class="VariableSet" id="External-environment"/> + <ref class="Variable" id="CORAL_AUTH_PATH"/> + </rel> + <rel name="IsControlledBy" class="RunControlApplication" id="RootController"/> + <rel name="DefaultTags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + </rel> + <rel name="Parameters"> + <ref class="VariableSet" id="SetupSegmentParameters"/> + <ref class="VariableSet" id="External-parameters"/> + </rel> + <rel name="TestRepositories"> + <ref class="TestSet" id="OnlineInfrastructureTests"/> + <ref class="TestSet" id="TDAQ_Tests"/> + </rel> + <rel name="PmgAgent" class="Binary" id="pmgserver"/> + <rel name="InitialPartition" class="Partition" id="initial"/> + <rel name="TestHosts" class="ComputerSet" id="TestsHosts4TBed"/> +</obj> + +<obj class="OnlineSegment" id="setup-initial"> + <attr name="T0_ProjectTag" type="string"> + <data val="data_test"/> + </attr> + <rel name="Infrastructure"> + <ref class="IPCServiceApplication" id="rm-server"/> + <ref class="IPCServiceApplication" id="MTS_IS"/> + <ref class="IPCServiceApplication" id="mts-worker-initial"/> + <ref class="IPCServiceApplication" id="ISRepository-initial"/> + <ref class="IPCServiceApplication" id="RDB_INITIAL"/> + <ref class="IPCServiceApplication" id="PMG_IS"/> + <ref class="IPCServiceApplication" id="Setup_IS"/> + <ref class="IPCServiceApplication" id="RunParams_IS"/> + <ref class="IPCServiceApplication" id="CEP-initial"/> + <ref class="IPCServiceApplication" id="LHC"/> + <ref class="IPCServiceApplication" id="RunCtrl_IS"/> + </rel> + <rel name="IsControlledBy" class="RunControlApplication" id="DefaultRootController"/> + <rel name="DefaultTags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + </rel> + <rel name="Parameters"> + <ref class="VariableSet" id="SetupSegmentParameters"/> + <ref class="VariableSet" id="External-parameters"/> + </rel> + <rel name="TestRepositories"> + <ref class="TestSet" id="TDAQ_Tests"/> + <ref class="TestSet" id="InitialInfrastructureTests"/> + </rel> + <rel name="PmgAgent" class="Binary" id="pmgserver"/> + <rel name="InitialPartition" class="Partition" id="initial"/> +</obj> + +<obj class="PBeastSubscription" id="all"> + <attr name="ReadWhenSubscribe" type="bool" val="0"/> + <rel name="Types" class="PBeastSubscriptionTypes" id="NoHistograms"/> +</obj> + +<obj class="PBeastSubscription" id="all-initial"> + <attr name="ReadWhenSubscribe" type="bool" val="0"/> + <rel name="Types" class="PBeastSubscriptionTypes" id="NoHistograms-initial"/> +</obj> + +<obj class="PBeastSubscriptionTypes" id="NoHistograms"> + <attr name="Name" type="string" val="Histogram"/> + <attr name="IncludeSubTypes" type="bool" val="1"/> + <attr name="ExcludeThisType" type="bool" val="1"/> + <attr name="CriteriaLogic" type="enum" val="AND"/> +</obj> + +<obj class="PBeastSubscriptionTypes" id="NoHistograms-initial"> + <attr name="Name" type="string" val="Histogram"/> + <attr name="IncludeSubTypes" type="bool" val="1"/> + <attr name="ExcludeThisType" type="bool" val="1"/> + <attr name="CriteriaLogic" type="enum" val="AND"/> +</obj> + +<obj class="Partition" id="initial"> + <attr name="IPCRef" type="string" val="$(TDAQ_IPC_INIT_REF)"/> + <attr name="DBPath" type="string" val="$(TDAQ_DB_PATH)"/> + <attr name="DBName" type="string" val="$(TDAQ_DB_DATA)"/> + <attr name="DBTechnology" type="enum" val="oksconfig"/> + <attr name="LogRoot" type="string" val="/logs/${TDAQ_VERSION}"/> + <attr name="WorkingDirectory" type="string" val="/tmp/${TDAQ_VERSION}"/> + <rel name="OnlineInfrastructure" class="OnlineSegment" id="setup-initial"/> + <rel name="DefaultHost" class="Computer" id="pc-tbed-onl-01.cern.ch"/> + <rel name="DefaultTags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + </rel> + <rel name="ProcessEnvironment"> + <ref class="VariableSet" id="CommonEnvironment"/> + </rel> + <rel name="Parameters"> + <ref class="VariableSet" id="CommonParameters"/> + <ref class="Variable" id="TDAQ_VERSION"/> + </rel> +</obj> + +<obj class="Partition" id="part_hlt_jholm"> + <attr name="IPCRef" type="string" val="$(TDAQ_IPC_INIT_REF)"/> + <attr name="DBPath" type="string" val="$(TDAQ_DB_PATH)"/> + <attr name="DBName" type="string" val="$(TDAQ_DB_DATA)"/> + <attr name="DBTechnology" type="enum" val="rdbconfig"/> + <attr name="LogRoot" type="string" val="/tmp"/> + <attr name="WorkingDirectory" type="string" val="/tmp/${TDAQ_PARTITION}"/> + <rel name="Segments"> + <ref class="Segment" id="HLT"/> + <ref class="Segment" id="ROS-Segment-1-emulated-dc"/> + </rel> + <rel name="OnlineInfrastructure" class="OnlineSegment" id="setup"/> + <rel name="DefaultHost" class="Computer" id="pc-tbed-pub-32.cern.ch"/> + <rel name="DefaultTags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + </rel> + <rel name="ProcessEnvironment"> + <ref class="VariableSet" id="CommonEnvironment"/> + </rel> + <rel name="Parameters"> + <ref class="VariableSet" id="CommonParameters"/> + </rel> + <rel name="DataFlowParameters" class="DFParameters" id="Default-DFParameters-1"/> + <rel name="IS_InformationSource" class="IS_InformationSources" id="part_hlt_jholm-counters"/> + <rel name="MasterTrigger" class="MasterTrigger" id="HLTSVMaster"/> + <rel name="TriggerConfiguration" class="TriggerConfiguration" id="PuDummyTriggerConfig-1"/> +</obj> + +<obj class="PlatformCompatibility" id="i686-slc6"> + <attr name="HW_Tag" type="enum" val="i686-slc6"/> +</obj> + +<obj class="PlatformCompatibility" id="x86_64-slc6"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <rel name="CompatibleWith"> + <ref class="PlatformCompatibility" id="i686-slc6"/> + </rel> +</obj> + +<obj class="PuDummySteering" id="HLT-Dummy-Steering"> + <attr name="libraries" type="string"> + <data val="pudummy"/> + </attr> + <attr name="resultSizeDistribution" type="string" val="C|1000"/> + <rel name="steps"> + <ref class="DummyROBStep" id="calo_algorithm-1"/> + <ref class="DummyStep" id="efStep"/> + </rel> +</obj> + +<obj class="RM_HW_Resource" id="DBPROXY"> + <attr name="Description" type="string" val="Resource locked by a db proxy Application. The whole Computer is locked for any other db proxy instance."/> + <attr name="MaxCopyPerPartition" type="s32" val="1"/> + <attr name="MaxCopyTotal" type="s32" val="1"/> + <attr name="HelpLink" type="string" val="http://"/> + <attr name="HardwareClass" type="string" val="Computer"/> +</obj> + +<obj class="RM_HW_Resource" id="HLTRC"> + <attr name="Description" type="string" val="Resource locked by a HLTRC Application. The whole Computer is locked for any other HLTRC instance."/> + <attr name="MaxCopyPerPartition" type="s32" val="1"/> + <attr name="MaxCopyTotal" type="s32" val="10"/> + <attr name="HelpLink" type="string" val="http://"/> + <attr name="HardwareClass" type="string" val="Computer"/> +</obj> + +<obj class="RM_HW_Resource" id="ROS"> + <attr name="Description" type="string" val="Resource locked by a ROS Application. The whole Computer is locked for any other ROS instance."/> + <attr name="MaxCopyPerPartition" type="s32" val="1"/> + <attr name="MaxCopyTotal" type="s32" val="1"/> + <attr name="HelpLink" type="string" val="http://"/> + <attr name="HardwareClass" type="string" val="Computer"/> +</obj> + +<obj class="RM_SW_Resource" id="ExpertControl"> + <attr name="Description" type="string" val="Defines maximum number of concurrent IGUI ran in expert mode"/> + <attr name="MaxCopyPerPartition" type="s32" val="1"/> + <attr name="MaxCopyTotal" type="s32" val="20"/> + <attr name="HelpLink" type="string" val="http://"/> +</obj> + +<obj class="RM_SW_Resource" id="HLTSV"> + <attr name="Description" type="string" val="Resource locked by the DFM. Only 1 DFM allowed per partition."/> + <attr name="MaxCopyPerPartition" type="s32" val="1"/> + <attr name="MaxCopyTotal" type="s32" val="1000"/> + <attr name="HelpLink" type="string" val="http://"/> +</obj> + +<obj class="RM_SW_Resource" id="RunControlTree"> + <attr name="Description" type="string" val="Resource locked by the Root of the Run Control Tree."/> + <attr name="MaxCopyPerPartition" type="s32" val="1"/> + <attr name="MaxCopyTotal" type="s32" val="1000"/> + <attr name="HelpLink" type="string" val="http://"/> +</obj> + +<obj class="RM_SW_Resource" id="StatusDisplay"> + <attr name="Description" type="string" val="Resource locked by the IGUI when it wants to get status display permissions."/> + <attr name="MaxCopyPerPartition" type="s32" val="50"/> + <attr name="MaxCopyTotal" type="s32" val="5000"/> + <attr name="HelpLink" type="string" val="http://"/> +</obj> + +<obj class="RM_SW_Resource" id="UserControl"> + <attr name="Description" type="string" val="Defines maximum number of concurrent IGUI ran in user mode"/> + <attr name="MaxCopyPerPartition" type="s32" val="1"/> + <attr name="MaxCopyTotal" type="s32" val="100"/> + <attr name="HelpLink" type="string" val="http://"/> +</obj> + +<obj class="ROS" id="ROS-PIXEL_BARREL-00"> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="60"/> + <attr name="ProbeInterval" type="s32" val="25"/> + <attr name="FullStatisticsInterval" type="s32" val="63"/> + <attr name="ControlsTTCPartitions" type="bool" val="0"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="10"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="0"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Restart"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="DataRequestDestination" type="enum" val="PC"/> + <rel name="Program" class="Binary" id="ReadoutApplication"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-pub-32.cern.ch"/> + <rel name="Contains"> + <ref class="EmulatedReadoutModule" id="EMULATED-MODULE-PIXEL_BARREL-00-0"/> + </rel> + <rel name="MemoryConfiguration" class="MemoryPool" id="ROS-Segment-1-MemoryPool"/> + <rel name="Detector" class="Detector" id="PIXEL_BARREL"/> + <rel name="Configuration" class="ReadoutConfiguration" id="ROS-Segment-1-Configuration"/> + <rel name="Trigger"> + <ref class="DFTriggerIn" id="ROS-Segment-1-TriggerIn"/> + </rel> +</obj> + +<obj class="Rack" id="dummyRack"> + <attr name="State" type="bool" val="1"/> + <rel name="Nodes"> + <ref class="Computer" id="pc-tbed-pub-32.cern.ch"/> + <ref class="Computer" id="pc-tbed-pub-32.cern.ch"/> + </rel> + <rel name="LFS"> + <ref class="Computer" id="pc-tbed-pub-32.cern.ch"/> + </rel> +</obj> + +<obj class="Rack" id="tpu-rack-05"> + <attr name="State" type="bool" val="1"/> + <rel name="Nodes"> + <ref class="ComputerSet" id="tpu-rack-05"/> + </rel> + <rel name="LFS"> + <ref class="Computer" id="pc-tbed-tpu-05001.cern.ch"/> + </rel> +</obj> + +<obj class="Rack" id="tpu-rack-06"> + <attr name="State" type="bool" val="1"/> + <rel name="Nodes"> + <ref class="ComputerSet" id="tpu-rack-06"/> + </rel> + <rel name="LFS"> + <ref class="Computer" id="pc-tbed-tpu-06001.cern.ch"/> + </rel> +</obj> + +<obj class="Rack" id="tpu-rack-07"> + <attr name="State" type="bool" val="1"/> + <rel name="Nodes"> + <ref class="ComputerSet" id="tpu-rack-07"/> + </rel> + <rel name="LFS"> + <ref class="Computer" id="pc-tbed-tpu-07001.cern.ch"/> + </rel> +</obj> + +<obj class="ReadoutConfiguration" id="ROS-Segment-1-Configuration"> + <attr name="QueueSize" type="u32" val="100"/> + <attr name="QueueUnblockOffset" type="u32" val="90"/> + <attr name="NumberOfRequestHandlers" type="u32" val="4"/> + <attr name="MonitoringScalingFactor" type="u32" val="10"/> + <attr name="ThreadedConfigure" type="bool" val="0"/> + <attr name="ISServerName" type="string" val="DF"/> +</obj> + +<obj class="ResourceApplication" id="oks2coralRA"> + <attr name="Lifetime" type="enum" val="Boot_Shutdown"/> + <attr name="AllowSpontaneousExit" type="bool" val="0"/> + <attr name="Parameters" type="string" val="-c ${OKS2CORAL_CONNECT} -w ${OKS2CORAL_WORKING_SCHEMA} -p ${TDAQ_PARTITION} -f $(TDAQ_DB_DATA) "/> + <attr name="RestartParameters" type="string" val="-c ${OKS2CORAL_CONNECT} -w ${OKS2CORAL_WORKING_SCHEMA} -p ${TDAQ_PARTITION} -f $(TDAQ_DB_DATA) "/> + <attr name="Logging" type="bool" val="1"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="Program" class="Binary" id="oks2coral"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="ResourceSetAND" id="ConfigArchive"> + <rel name="Contains"> + <ref class="ResourceApplication" id="oks2coralRA"/> + </rel> +</obj> + +<obj class="ResourceSetAND" id="PIXEL_BARREL-ROS"> + <rel name="Contains"> + <ref class="ROS" id="ROS-PIXEL_BARREL-00"/> + </rel> +</obj> + +<obj class="ResourcesInfoConfig" id="MAIN"> + <attr name="ArchiveInCOOL" type="bool" val="0"/> + <rel name="DetectorFolders"> + <ref class="ResourcesInfoDetectorConfig" id="LAR"/> + </rel> + <rel name="GlobalFolder" class="ResourcesInfoDetectorConfig" id="GLOBAL"/> + <rel name="DefaultDetectorSubFolders"> + <ref class="ResourcesInfoDetectorFolderConfig" id="Robins"/> + </rel> +</obj> + +<obj class="ResourcesInfoDetectorConfig" id="GLOBAL"> + <attr name="FolderName" type="string" val="GLOBAL"/> +</obj> + +<obj class="ResourcesInfoDetectorConfig" id="LAR"> + <attr name="FolderName" type="string" val="LAR"/> + <attr name="SubDetectorIDs" type="u8"> + <data val="0x41"/> + <data val="0x42"/> + <data val="0x43"/> + <data val="0x44"/> + <data val="0x45"/> + <data val="0x46"/> + <data val="0x47"/> + <data val="0x48"/> + </attr> +</obj> + +<obj class="ResourcesInfoDetectorFolderConfig" id="Robins"> + <attr name="FolderName" type="string" val="Robins"/> + <attr name="BaseClasses" type="string"> + <data val="InputChannel"/> + </attr> +</obj> + +<obj class="RoIBPluginInternal" id="RoIBPluginInternal-1"> + <attr name="Libraries" type="string"> + <data val="libsvl1internal"/> + </attr> + <attr name="FragmentSize" type="u32" val="250"/> +</obj> + +<obj class="RunControlApplication" id="DefaultRootController"> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="50"/> + <attr name="ProbeInterval" type="s32" val="20"/> + <attr name="FullStatisticsInterval" type="s32" val="60"/> + <attr name="IfError" type="enum" val="Ignore"/> + <attr name="ControlsTTCPartitions" type="bool" val="0"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="Program" class="Binary" id="rc_root_controller"/> +</obj> + +<obj class="RunControlApplication" id="ResInfoProvider"> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="10"/> + <attr name="ProbeInterval" type="s32" val="0"/> + <attr name="FullStatisticsInterval" type="s32" val="0"/> + <attr name="IfError" type="enum" val="Restart"/> + <attr name="ControlsTTCPartitions" type="bool" val="0"/> + <attr name="Parameters" type="string" val="-o /tmp/db/.res_info_cache"/> + <attr name="RestartParameters" type="string" val="-o /tmp/db/.res_info_cache"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Restart"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="Program" class="Binary" id="res_info_provider"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="RunControlApplication" id="RootController"> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="60"/> + <attr name="ProbeInterval" type="s32" val="10"/> + <attr name="FullStatisticsInterval" type="s32" val="0"/> + <attr name="IfError" type="enum" val="Ignore"/> + <attr name="ControlsTTCPartitions" type="bool" val="0"/> + <attr name="Parameters" type="string" val="-P Shifter -s setup -n RootController"/> + <attr name="RestartParameters" type="string" val="-P Shifter -s setup -n RootController"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="30"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Restart"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="InitializationDependsFrom"> + <ref class="InfrastructureApplication" id="ipc-server"/> + <ref class="IPCServiceApplication" id="RunCtrl"/> + <ref class="IPCServiceApplication" id="RDB"/> + <ref class="IPCServiceApplication" id="RDB_RW"/> + <ref class="IPCServiceApplication" id="Setup"/> + <ref class="IPCServiceApplication" id="MTS"/> + <ref class="IPCServiceApplication" id="CHIP"/> + </rel> + <rel name="Program" class="Binary" id="rc_root_controller"/> + <rel name="ProcessEnvironment"> + <ref class="VariableSet" id="External-environment"/> + <ref class="Variable" id="ROOT_CTRL_DEBUG"/> + </rel> + <rel name="RunsOn" class="Computer" id="pc-tbed-onl-02.cern.ch"/> +</obj> + +<obj class="RunControlApplication" id="ctp"> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="20"/> + <attr name="ProbeInterval" type="s32" val="25"/> + <attr name="FullStatisticsInterval" type="s32" val="63"/> + <attr name="IfError" type="enum" val="Ignore"/> + <attr name="ControlsTTCPartitions" type="bool" val="0"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Restart"/> + <attr name="IfFailsToStart" type="enum" val="Ignore"/> + <rel name="Program" class="Binary" id="rc_ctp_emulator"/> +</obj> + +<obj class="RunControlTemplateApplication" id="DefRC"> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="20"/> + <attr name="ProbeInterval" type="s32" val="10"/> + <attr name="FullStatisticsInterval" type="s32" val="0"/> + <attr name="ControlsTTCPartitions" type="bool" val="0"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="60"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="FirstHost"/> + <rel name="Program" class="Binary" id="rc_controller"/> +</obj> + +<obj class="RunControlTemplateApplication" id="DefRC-NoRestart"> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="30"/> + <attr name="ProbeInterval" type="s32" val="60"/> + <attr name="FullStatisticsInterval" type="s32" val="0"/> + <attr name="ControlsTTCPartitions" type="bool" val="0"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="0"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="FirstHost"/> + <rel name="Program" class="Binary" id="rc_controller"/> +</obj> + +<obj class="RunControlTemplateApplication" id="DefRC-TTC"> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="30"/> + <attr name="ProbeInterval" type="s32" val="60"/> + <attr name="FullStatisticsInterval" type="s32" val="0"/> + <attr name="ControlsTTCPartitions" type="bool" val="1"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="1"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <attr name="Instances" type="u16" val="1"/> + <attr name="RunsOn" type="enum" val="FirstHost"/> + <rel name="Program" class="Binary" id="rc_controller"/> +</obj> + +<obj class="SFOngApplication" id="SFO-1"> + <attr name="InterfaceName" type="string" val="rc/commander"/> + <attr name="ActionTimeout" type="s32" val="10"/> + <attr name="ProbeInterval" type="s32" val="25"/> + <attr name="FullStatisticsInterval" type="s32" val="63"/> + <attr name="ControlsTTCPartitions" type="bool" val="0"/> + <attr name="Logging" type="bool" val="1"/> + <attr name="InitTimeout" type="u32" val="60"/> + <attr name="ExitTimeout" type="u32" val="5"/> + <attr name="RestartableDuringRun" type="bool" val="0"/> + <attr name="IfExitsUnexpectedly" type="enum" val="Error"/> + <attr name="IfFailsToStart" type="enum" val="Error"/> + <rel name="Program" class="Binary" id="SFOng_main"/> + <rel name="RunsOn" class="Computer" id="pc-tbed-pub-32.cern.ch"/> + <rel name="ConfigurationRules" class="ConfigurationRuleBundle" id="SfoConfigurationRuleBundle"/> + <rel name="SFOngConfiguration" class="SFOngConfiguration" id="SFO-Configuration-1"/> +</obj> + +<obj class="SFOngConfiguration" id="SFO-Configuration-1"> + <attr name="NBuffers" type="u32" val="20"/> + <attr name="BufferSize_KiB" type="u32" val="10240"/> + <attr name="RecordingEnabled" type="bool" val="0"/> + <attr name="LumiblockEnabled" type="bool" val="1"/> + <attr name="MaxLumiblockLifetime" type="u32" val="5"/> + <attr name="DirectoryMinFreeSpace" type="float" val="0.1"/> + <attr name="DirectoryWritingTime_min" type="u16" val="60"/> + <attr name="DirectoryChangeTime_min" type="u16" val="15"/> + <attr name="MaxFileSize_MiB" type="u32" val="2048"/> + <attr name="CompressionAlgorithm" type="enum" val="NONE"/> + <attr name="CompressionLevel" type="u16" val="1"/> + <attr name="NInputThreads" type="u16" val="4"/> + <attr name="NWorkerThreads" type="u16" val="6"/> + <attr name="EventTransferTimeout_ms" type="u32" val="10000"/> + <attr name="StreamWeightPeriod" type="u32" val="5"/> + <attr name="IOServiceWeightPeriod" type="u32" val="5"/> + <attr name="Adler32MtNbThreads" type="s32" val="1"/> + <attr name="Adler32MtThreshold" type="u32" val="30000"/> +</obj> + +<obj class="SW_ExternalPackage" id="GCC"> + <attr name="Name" type="string" val="GCC"/> + <attr name="InstallationPath" type="string" val="${GCC_HOME}"/> + <rel name="Binaries"> + <ref class="TagMapping" id="x86_64-slc6-gcc8-opt-for-GCC-bin"/> + <ref class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-GCC-bin"/> + <ref class="TagMapping" id="x86_64-centos7-gcc8-opt-for-GCC-bin"/> + <ref class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-GCC-bin"/> + </rel> + <rel name="SharedLibraries"> + <ref class="TagMapping" id="x86_64-slc6-gcc8-opt-for-GCC-lib64"/> + <ref class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-GCC-lib64"/> + <ref class="TagMapping" id="x86_64-centos7-gcc8-opt-for-GCC-lib64"/> + <ref class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-GCC-lib64"/> + </rel> +</obj> + +<obj class="SW_Repository" id="BOOST"> + <attr name="Name" type="string" val="BOOST"/> + <attr name="InstallationPath" type="string" val="${BOOST_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="COOL"> + <attr name="Name" type="string" val="COOL"/> + <attr name="InstallationPath" type="string" val="${COOL_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="CORAL"> + <attr name="Name" type="string" val="CORAL"/> + <attr name="InstallationPath" type="string" val="${CORAL_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="CPPUNIT"> + <attr name="Name" type="string" val="CPPUNIT"/> + <attr name="InstallationPath" type="string" val="${CPPUNIT_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="CoralServerRepo"> + <attr name="Name" type="string" val=""/> + <attr name="InstallationPath" type="string" val="/cvmfs/sft.cern.ch/lcg/releases/LCG_95/CORAL/3_2_0"/> + <attr name="InstallationPathVariableName" type="string" val="CORALSVR_INST_PATH"/> + <rel name="Uses"> + <ref class="SW_Repository" id="BOOST"/> + <ref class="SW_Repository" id="MYSQL"/> + <ref class="SW_Repository" id="ORACLE"/> + <ref class="SW_Repository" id="SQLITE"/> + <ref class="SW_Repository" id="XERCESC"/> + <ref class="SW_ExternalPackage" id="GCC"/> + </rel> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + </rel> + <rel name="SW_Objects"> + <ref class="Binary" id="coralServerProxy"/> + <ref class="Binary" id="coralServer"/> + </rel> +</obj> + +<obj class="SW_Repository" id="FUTURE"> + <attr name="Name" type="string" val="FUTURE"/> + <attr name="InstallationPath" type="string" val="${FUTURE_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="GLIB"> + <attr name="Name" type="string" val="GLIB"/> + <attr name="InstallationPath" type="string" val="${GLIB_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="JAVA"> + <attr name="Name" type="string" val="JAVA"/> + <attr name="InstallationPath" type="string" val="${JAVA_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="LIBFFI"> + <attr name="Name" type="string" val="LIBFFI"/> + <attr name="InstallationPath" type="string" val="${LIBFFI_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="LIBXKBCOMMON"> + <attr name="Name" type="string" val="LIBXKBCOMMON"/> + <attr name="InstallationPath" type="string" val="${LIBXKBCOMMON_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="MYSQL"> + <attr name="Name" type="string" val="MYSQL"/> + <attr name="InstallationPath" type="string" val="${MYSQL_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="ORACLE"> + <attr name="Name" type="string" val="ORACLE"/> + <attr name="InstallationPath" type="string" val="${ORACLE_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="Online"> + <attr name="Name" type="string" val="Online"/> + <attr name="InstallationPath" type="string" val="/afs/cern.ch/atlas/project/tdaq/cmake/projects/tdaq/tdaq-99-00-00/installed"/> + <attr name="ISInfoDescriptionFiles" type="string"> + <data val="share/data/AltiController//alti_is_info.xml"/> + <data val="share/data/BeamSpotUtils//beamspot_is_info.xml"/> + <data val="share/data/CES//ces_metrics_is_info.xml"/> + <data val="share/data/CoolUtils//coolutils_is_info.xml"/> + <data val="share/data/DFConfiguration/schema/dc_is_info.xml"/> + <data val="share/data/DFConfiguration/schema/ros_is_info.xml"/> + <data val="share/data/DFTools/schema/dfs_is_info.xml"/> + <data val="share/data/ExpertSystemInterface//esint_is_info.xml"/> + <data val="share/data/HLTMPPU/schema/HLTMPPU_ISInfo.schema.xml"/> + <data val="share/data/Igui//Igui_is_info.xml"/> + <data val="share/data/MuCalStream/schema/mucal_info.xml"/> + <data val="share/data/OLC2HLT//olc2hlt_is_info.xml"/> + <data val="share/data/ProcessManager//pmg_is_info.xml"/> + <data val="share/data/RCDExampleModules//RCDModulesInfo.schema.xml"/> + <data val="share/data/RCInfo//daq_app_is_info.xml"/> + <data val="share/data/ROSCore//ROSCoreInfo.schema.xml"/> + <data val="share/data/ROSDescriptor//ROSDescriptorInfo.schema.xml"/> + <data val="share/data/ROSDescriptorNP//NPDescriptorInfo.schema.xml"/> + <data val="share/data/ROSIO//ROSIOinfo.schema.xml"/> + <data val="share/data/ROSInterruptScheduler//ROSInterruptSchedulerInfo.schema.xml"/> + <data val="share/data/ROSModules//ROSModulesInfo.schema.xml"/> + <data val="share/data/ROSModulesNP/schema/ROSModulesNPInfo.schema.xml"/> + <data val="share/data/ROSNP2lan//NP2lanInfo.schema.xml"/> + <data val="share/data/ROSQuestNP//QuestNPInfo.schema.xml"/> + <data val="share/data/ROSTCPNP//TCPNPInfo.schema.xml"/> + <data val="share/data/ROSTester//ROSTesterInfo.schema.xml"/> + <data val="share/data/ROx//ROxInfo.schema.xml"/> + <data val="share/data/ResourcesInfo//resources-info.xml"/> + <data val="share/data/SFOTZ/schema/SFOTZ_ISInfo.schema.xml"/> + <data val="share/data/SFOng/schema/SFOng_ISInfo.schema.xml"/> + <data val="share/data/TRP//is_timepoint.schema.xml"/> + <data val="share/data/TTCInfo//ttc_is_info.xml"/> + <data val="share/data/asyncmsg/schema/MsgInfo_is.schema.xml"/> + <data val="share/data/dcm/schema/dcm_is.schema.xml"/> + <data val="share/data/ddcInfo//isddc.schema.xml"/> + <data val="share/data/dqm_config/is/dqm_config_is.xml"/> + <data val="share/data/dqmf/is/dqmf_is_info.xml"/> + <data val="share/data/emon//emon.xml"/> + <data val="share/data/hltsv/schema/hltsv_is.schema.xml"/> + <data val="share/data/is//is.xml"/> + <data val="share/data/ls//ls_is.xml"/> + <data val="share/data/mts//mts.schema.xml"/> + <data val="share/data/oh//histogram.xml"/> + <data val="share/data/oks2coral//oks-archive-info.xml"/> + <data val="share/data/pbeast//receiver-monitoring.xml"/> + <data val="share/data/pudummy/schema/pudummy_is.schema.xml"/> + <data val="share/data/siom/schema/siom_core_info.xml"/> + <data val="share/data/siom/schema/siom_plugin_info.xml"/> + <data val="/afs/cern.ch/user/j/jholm/public/partition_is_tests/CastorScriptState.schema.xml"/> + </attr> + <attr name="IGUIProperties" type="string"> + <data val="-Digui.panel=IguiPanels.DFPanel.DFPanel"/> + <data val="-Digui.panel=PmgGui.PmgISPanel"/> + </attr> + <attr name="InstallationPathVariableName" type="string" val="TDAQ_INST_PATH"/> + <rel name="Uses"> + <ref class="SW_Repository" id="TDAQExternal"/> + <ref class="SW_Repository" id="TDAQ Common"/> + <ref class="SW_Repository" id="COOL"/> + <ref class="SW_Repository" id="CORAL"/> + <ref class="SW_Repository" id="MYSQL"/> + <ref class="SW_Repository" id="ORACLE"/> + <ref class="SW_Repository" id="XERCESC"/> + <ref class="SW_Repository" id="SQLITE"/> + <ref class="SW_Repository" id="TBB"/> + <ref class="SW_Repository" id="PROTOBUF"/> + <ref class="SW_Repository" id="ZEROMQ"/> + </rel> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + </rel> + <rel name="SW_Objects"> + <ref class="Binary" id="rmgr_free_resource"/> + <ref class="Binary" id="rc_bootstrap"/> + <ref class="JarFile" id="mts.jar"/> + <ref class="Binary" id="rmgr_request_resources"/> + <ref class="Binary" id="robinCheck"/> + <ref class="Binary" id="test_tcp_port"/> + <ref class="Binary" id="mda_stat_publish"/> + <ref class="Binary" id="mda_eor"/> + <ref class="JarFile" id="ers.jar"/> + <ref class="JarFile" id="jeformat.jar"/> + <ref class="Binary" id="np2lan"/> + <ref class="Binary" id="rc_ctp_emulator"/> + <ref class="Binary" id="ddc_dt_dim"/> + <ref class="Script" id="rosmon.py"/> + <ref class="Binary" id="test_process_id"/> + <ref class="Binary" id="test_app_pmg"/> + <ref class="Binary" id="rc_test_ctrl"/> + <ref class="Binary" id="siom_application"/> + <ref class="Binary" id="oh_raw_provider"/> + <ref class="JarFile" id="oksconfig.jar"/> + <ref class="Binary" id="robin_irq_catch"/> + <ref class="Binary" id="test_rdb_writer"/> + <ref class="Binary" id="rdb_server"/> + <ref class="Binary" id="lsReceiver"/> + <ref class="Script" id="log_manager"/> + <ref class="Binary" id="slink_src"/> + <ref class="JarFile" id="cocadal.jar"/> + <ref class="Binary" id="rmgr_server"/> + <ref class="JarFile" id="mdadal.jar"/> + <ref class="Binary" id="is_ls"/> + <ref class="JarFile" id="elisaJClientAPI.jar"/> + <ref class="Script" id="ces"/> + <ref class="Binary" id="rc_example_app"/> + <ref class="Binary" id="RobinTestSuite"/> + <ref class="Binary" id="is_rm"/> + <ref class="Binary" id="eff_daq_splunk"/> + <ref class="JarFile" id="is.jar"/> + <ref class="Binary" id="eff_make_combined_graphs"/> + <ref class="Binary" id="olc2hlt-invalidate"/> + <ref class="Binary" id="test_is_info"/> + <ref class="Binary" id="emon_conductor"/> + <ref class="Binary" id="ReadoutApplication"/> + <ref class="Binary" id="rc_sender"/> + <ref class="JarFile" id="rmgr.jar"/> + <ref class="Binary" id="test_host_ip"/> + <ref class="Binary" id="oh_test_provider"/> + <ref class="JarFile" id="RunControl.jar"/> + <ref class="Binary" id="oh_cp"/> + <ref class="Binary" id="emon_pull_sampler"/> + <ref class="Binary" id="testROS"/> + <ref class="JarFile" id="ESInterface.jar"/> + <ref class="Binary" id="ROSTester"/> + <ref class="Script" id="hilltrotQt.py"/> + <ref class="Binary" id="mts2splunk_receiver"/> + <ref class="JarFile" id="elisaJClientAPI-Helper_get.jar"/> + <ref class="JarFile" id="IguiPanels.jar"/> + <ref class="JarFile" id="rdb.jar"/> + <ref class="JarFile" id="RmGui.jar"/> + <ref class="Binary" id="robinstress"/> + <ref class="Binary" id="eth_dst"/> + <ref class="Binary" id="circ_generator"/> + <ref class="Binary" id="config_dump"/> + <ref class="Binary" id="ipc_proxy"/> + <ref class="Binary" id="test_ipc_server"/> + <ref class="Binary" id="rc_example_app_rm"/> + <ref class="Binary" id="dolar_slink_src"/> + <ref class="Binary" id="rc_dq_flag_writer"/> + <ref class="Binary" id="pbeast_web_receiver"/> + <ref class="Binary" id="ddc_mt_dim"/> + <ref class="Script" id="test_host_system.sh"/> + <ref class="JarFile" id="dal.jar"/> + <ref class="Binary" id="test_is_server"/> + <ref class="JarFile" id="rdbconfig.jar"/> + <ref class="Binary" id="SFOng_main"/> + <ref class="Binary" id="pbeast_repository_server"/> + <ref class="Binary" id="test_rdb_server"/> + <ref class="Binary" id="robin_slink_dst"/> + <ref class="Binary" id="dolarscope"/> + <ref class="JarFile" id="res-info-utils.jar"/> + <ref class="JarFile" id="ddcInfo.jar"/> + <ref class="Binary" id="eff_run_efficiency"/> + <ref class="Binary" id="ddc_dt_dim_init"/> + <ref class="Binary" id="hltpuEmu"/> + <ref class="Binary" id="is_server"/> + <ref class="Binary" id="oh_ls"/> + <ref class="JarFile" id="ROSModulesNP_IS.jar"/> + <ref class="Binary" id="testTTC2LAN"/> + <ref class="JarFile" id="RODBusydal.jar"/> + <ref class="JarFile" id="Igui.Common.jar"/> + <ref class="Script" id="olc2hlt.py"/> + <ref class="Binary" id="dcm_main"/> + <ref class="Binary" id="HLTRC_main"/> + <ref class="Script" id="reset-or-kill-all-gnam.py"/> + <ref class="Script" id="jrc_example_application"/> + <ref class="Binary" id="pmgserver"/> + <ref class="Script" id="sfo-display.py"/> + <ref class="Binary" id="eff_make_csv_file"/> + <ref class="Binary" id="rc_pyrunner"/> + <ref class="JarFile" id="coral_auth.jar"/> + <ref class="Script" id="dal_load_is_info_files.sh"/> + <ref class="Binary" id="dozolar_fmctest"/> + <ref class="Binary" id="dqm_archiver"/> + <ref class="JarFile" id="logManager.jar"/> + <ref class="JarFile" id="pmg.jar"/> + <ref class="Binary" id="res_info_archiver"/> + <ref class="Binary" id="rc_root_controller"/> + <ref class="Script" id="Igui_start"/> + <ref class="Binary" id="emon_push_sampler"/> + <ref class="Binary" id="test_drivers"/> + <ref class="Binary" id="opmon_monitor"/> + <ref class="Binary" id="oks2coral"/> + <ref class="Script" id="change_node_state.py"/> + <ref class="Binary" id="rc_get_running_time"/> + <ref class="Binary" id="logTest"/> + <ref class="Binary" id="rc_get_efficiency"/> + <ref class="Binary" id="test_corba_server"/> + <ref class="JarFile" id="pmgsync.jar"/> + <ref class="JarFile" id="elisaJClientAPI-Helper_insert.jar"/> + <ref class="Binary" id="hltsv_main"/> + <ref class="JarFile" id="ces.jar"/> + <ref class="JarFile" id="DFdal.jar"/> + <ref class="Binary" id="test_computer"/> + <ref class="JarFile" id="config.jar"/> + <ref class="JarFile" id="ROSModules_IS.jar"/> + <ref class="Binary" id="emon_task"/> + <ref class="Binary" id="littlejohn"/> + <ref class="Binary" id="coca_server"/> + <ref class="Binary" id="test_dummy"/> + <ref class="JarFile" id="external.jar"/> + <ref class="JarFile" id="Igui.jar"/> + <ref class="Script" id="start_rm_gui"/> + <ref class="JarFile" id="IguiCommander.jar"/> + <ref class="Script" id="dfs_server.py"/> + <ref class="Binary" id="oh_root_provider"/> + <ref class="Binary" id="res_info_provider"/> + <ref class="Binary" id="rc_pixel_ready_reactor"/> + <ref class="Binary" id="solarscope"/> + <ref class="Binary" id="oh_graph_provider"/> + <ref class="Binary" id="trpgui"/> + <ref class="JarFile" id="jTm.jar"/> + <ref class="JarFile" id="DF_IS_Info.jar"/> + <ref class="Binary" id="wmi_server"/> + <ref class="Binary" id="oh_rm"/> + <ref class="Binary" id="eff_daq_efficiency"/> + <ref class="Binary" id="slink_dst"/> + <ref class="Binary" id="trg_dummy_master_trigger"/> + <ref class="Binary" id="HLTMPPU_main"/> + <ref class="Binary" id="rdb_writer"/> + <ref class="JarFile" id="TTCInfo.jar"/> + <ref class="Binary" id="test_program_file"/> + <ref class="Script" id="sfo-db-gui.py"/> + <ref class="JarFile" id="TriggerCommander.jar"/> + <ref class="Binary" id="pmg_sleep_process"/> + <ref class="Binary" id="pbeast_is_receiver"/> + <ref class="Binary" id="test_app_log"/> + <ref class="Binary" id="opmon_analyser"/> + <ref class="Binary" id="rc_get_apps_start_order"/> + <ref class="Binary" id="ipc_server"/> + <ref class="Script" id="test_nic.sh"/> + <ref class="Binary" id="rc_sound_player"/> + <ref class="Binary" id="rc_controller"/> + <ref class="Binary" id="oh_mv"/> + <ref class="JarFile" id="ipc.jar"/> + <ref class="Binary" id="quest_test"/> + <ref class="Script" id="sfo-db-display.py"/> + <ref class="Binary" id="dqmf_rm"/> + <ref class="Binary" id="eth_src"/> + <ref class="Binary" id="dal_create_db_connection_files"/> + <ref class="Binary" id="testDCM"/> + <ref class="Binary" id="test_pmg_agent"/> + <ref class="Binary" id="eff_csv_splunk"/> + <ref class="Binary" id="MonInfoGatherer"/> + <ref class="Binary" id="mda"/> + <ref class="Binary" id="dqmf_agent"/> + <ref class="Binary" id="mts_ers_sender"/> + <ref class="Binary" id="mts_worker"/> + <ref class="Binary" id="ddc_ct_dim"/> + <ref class="Binary" id="ROx"/> + <ref class="Binary" id="rc_is2cool_archive"/> + <ref class="Script" id="oks2coral_mk_tmp_file.sh"/> + <ref class="Binary" id="robin_slink_src"/> + <ref class="Binary" id="gnam"/> + <ref class="JarFile" id="esperUtils.jar"/> + <ref class="JarFile" id="PmgGui.jar"/> + <ref class="Script" id="test_slink.py"/> + <ref class="Binary" id="pbeast_server"/> + <ref class="Binary" id="dozolar_setup"/> + <ref class="Binary" id="mts_ers_receiver"/> + <ref class="JarFile" id="testdal.jar"/> + <ref class="Binary" id="robinscope"/> + <ref class="JarFile" id="RCInfo.jar"/> + </rel> +</obj> + +<obj class="SW_Repository" id="PCRE"> + <attr name="Name" type="string" val="PCRE"/> + <attr name="InstallationPath" type="string" val="${PCRE_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="PNG"> + <attr name="Name" type="string" val="PNG"/> + <attr name="InstallationPath" type="string" val="${PNG_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="PROTOBUF"> + <attr name="Name" type="string" val="PROTOBUF"/> + <attr name="InstallationPath" type="string" val="${PROTOBUF_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="PYGRAPHICS"> + <attr name="Name" type="string" val="PYGRAPHICS"/> + <attr name="InstallationPath" type="string" val="${PYGRAPHICS_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="PYQT5"> + <attr name="Name" type="string" val="PYQT5"/> + <attr name="InstallationPath" type="string" val="${PYQT5_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="PYTHON"> + <attr name="Name" type="string" val="PYTHON"/> + <attr name="InstallationPath" type="string" val="${PYTHON_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="PYTOOLS"> + <attr name="Name" type="string" val="PYTOOLS"/> + <attr name="InstallationPath" type="string" val="${PYTOOLS_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="QT5"> + <attr name="Name" type="string" val="QT5"/> + <attr name="InstallationPath" type="string" val="${QT5_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="ROOT"> + <attr name="Name" type="string" val="ROOT"/> + <attr name="InstallationPath" type="string" val="${ROOT_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="SQLITE"> + <attr name="Name" type="string" val="SQLITE"/> + <attr name="InstallationPath" type="string" val="${SQLITE_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="TBB"> + <attr name="Name" type="string" val="TBB"/> + <attr name="InstallationPath" type="string" val="${TBB_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="TDAQ Common"> + <attr name="Name" type="string" val="TDAQ Common"/> + <attr name="InstallationPath" type="string" val="/afs/cern.ch/atlas/project/tdaq/cmake/projects/tdaq-common/tdaq-common-99-00-00/installed"/> + <attr name="InstallationPathVariableName" type="string" val="TDAQC_INST_PATH"/> + <rel name="Uses"> + <ref class="SW_Repository" id="ROOT"/> + <ref class="SW_Repository" id="BOOST"/> + <ref class="SW_Repository" id="PYTHON"/> + <ref class="SW_Repository" id="ZLIB"/> + <ref class="SW_ExternalPackage" id="GCC"/> + </rel> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + </rel> +</obj> + +<obj class="SW_Repository" id="TDAQExternal"> + <attr name="Name" type="string" val="TDAQExternal"/> + <attr name="InstallationPath" type="string" val="/afs/cern.ch/atlas/project/tdaq/cmake/projects/tdaq/tdaq-99-00-00/installed/external"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="XERCESC"> + <attr name="Name" type="string" val="XERCESC"/> + <attr name="InstallationPath" type="string" val="${XERCESC_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="XROOTD"> + <attr name="Name" type="string" val="XROOTD"/> + <attr name="InstallationPath" type="string" val="${XROOTD_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="ZEROMQ"> + <attr name="Name" type="string" val="ZEROMQ"/> + <attr name="InstallationPath" type="string" val="${ZEROMQ_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="SW_Repository" id="ZLIB"> + <attr name="Name" type="string" val="ZLIB"/> + <attr name="InstallationPath" type="string" val="${ZLIB_HOME}"/> + <rel name="Tags"> + <ref class="Tag" id="x86_64-centos7-gcc8-opt"/> + <ref class="Tag" id="x86_64-slc6-gcc8-dbg"/> + <ref class="Tag" id="x86_64-centos7-gcc8-dbg"/> + <ref class="Tag" id="x86_64-slc6-gcc8-opt"/> + </rel> +</obj> + +<obj class="Script" id="Igui_start"> + <attr name="BinaryName" type="string" val="Igui_start"/> + <attr name="Description" type="string" val="IGUI start up script"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="ces"> + <attr name="BinaryName" type="string" val="ces"/> + <attr name="Description" type="string" val="Central Expert System (CES) start up script"/> + <attr name="HelpURL" type="string" val=""/> + <attr name="Shell" type="string" val="java"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="TDAQ_JAVA_HOME"/> + <ref class="Variable" id="TDAQ_CES_DIR"/> + </rel> +</obj> + +<obj class="Script" id="change_node_state.py"> + <attr name="BinaryName" type="string" val="change_node_state.py"/> + <attr name="Description" type="string" val="Change the state in OKS of a Computer (used especially for xpu/ef)"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="dal_load_is_info_files.sh"> + <attr name="BinaryName" type="string" val="dal_load_is_info_files.sh"/> + <attr name="Description" type="string" val="load IS info files on rdb server"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="dfs_server.py"> + <attr name="BinaryName" type="string" val="dfs_server.py"/> + <attr name="Description" type="string" val="Fill the DF.DFSummary IS variable - used for monitoring data flow"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="hilltrotQt.py"> + <attr name="BinaryName" type="string" val="hilltrotQt.py"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="jrc_example_application"> + <attr name="BinaryName" type="string" val="jrc_example_application"/> + <attr name="Description" type="string" val="Simple java run control application"/> + <attr name="HelpURL" type="string" val=""/> + <attr name="Shell" type="string" val="java"/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> + <rel name="ProcessEnvironment"> + <ref class="Variable" id="TDAQ_JAVA_HOME"/> + </rel> +</obj> + +<obj class="Script" id="log_manager"> + <attr name="BinaryName" type="string" val="log_manager"/> + <attr name="Description" type="string" val="Log Manager start up script"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="oks2coral_mk_tmp_file.sh"> + <attr name="BinaryName" type="string" val="oks2coral_mk_tmp_file.sh"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="olc2hlt.py"> + <attr name="BinaryName" type="string" val="olc2hlt.py"/> + <attr name="Description" type="string" val="Copies OLC-produced preferred luminosity to CTP for HLT use."/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="reset-or-kill-all-gnam.py"> + <attr name="BinaryName" type="string" val="reset-or-kill-all-gnam.py"/> + <attr name="Description" type="string" val="Script to reset or kill all the gnam instances in a given partition"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="rosmon.py"> + <attr name="BinaryName" type="string" val="rosmon.py"/> + <attr name="Description" type="string" val="Produces aggregate ROS monitoring histograms from the IS information"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="sfo-db-display.py"> + <attr name="BinaryName" type="string" val="sfo-db-display.py"/> + <attr name="Description" type="string" val="Display the transfer from the SFO to Tier0"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="sfo-db-gui.py"> + <attr name="BinaryName" type="string" val="sfo-db-gui.py"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="sfo-display.py"> + <attr name="BinaryName" type="string" val="sfo-display.py"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="start_rm_gui"> + <attr name="BinaryName" type="string" val="start_rm_gui"/> + <attr name="Description" type="string" val="ResourceManager GUI start up script"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="test_host_system.sh"> + <attr name="BinaryName" type="string" val="test_host_system.sh"/> + <attr name="Description" type="string" val="launched on the remote host and performs a number of checks, like filesystem mounts and usage, system load, logs directory presence"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="test_nic.sh"> + <attr name="BinaryName" type="string" val="test_nic.sh"/> + <attr name="Description" type="string" val="pings the closest router from this NIC"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Script" id="test_slink.py"> + <attr name="BinaryName" type="string" val="test_slink.py"/> + <attr name="HelpURL" type="string" val=""/> + <rel name="BelongsTo" class="SW_Repository" id="Online"/> +</obj> + +<obj class="Segment" id="HLT"> + <rel name="Segments"> + <ref class="TemplateSegment" id="HLT-1"/> + </rel> + <rel name="Resources"> + <ref class="HLTSVApplication" id="HLTSV"/> + <ref class="SFOngApplication" id="SFO-1"/> + <ref class="MIGApplication" id="TopMIG-IS"/> + <ref class="MIGApplication" id="TopMIG-OH"/> + </rel> + <rel name="Infrastructure"> + <ref class="IPCServiceTemplateApplication" id="DF_IS"/> + <ref class="IPCServiceTemplateApplication" id="DF_Histogramming"/> + </rel> + <rel name="IsControlledBy" class="RunControlTemplateApplication" id="DefRC"/> +</obj> + +<obj class="Segment" id="ROS-Segment-1-emulated-dc"> + <rel name="Resources"> + <ref class="ResourceSetAND" id="PIXEL_BARREL-ROS"/> + </rel> + <rel name="Infrastructure"> + <ref class="IPCServiceTemplateApplication" id="DefRDB"/> + </rel> + <rel name="IsControlledBy" class="RunControlTemplateApplication" id="DefRC"/> +</obj> + +<obj class="Tag" id="x86_64-centos7-gcc8-dbg"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> +</obj> + +<obj class="Tag" id="x86_64-centos7-gcc8-opt"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> +</obj> + +<obj class="Tag" id="x86_64-slc6-gcc8-dbg"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> +</obj> + +<obj class="Tag" id="x86_64-slc6-gcc8-opt"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-GCC-bin"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="8.1.0/x86_64-centos7/bin"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-GCC-lib64"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="8.1.0/x86_64-centos7/lib64"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-PYTHONPATH"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-centos7-gcc8-dbg"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-ROOTSYS"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/ROOT/6.16.00/x86_64-centos7-gcc8-dbg"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-TDAQ_JAVA_HOME"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/java/8u91/x86_64-centos7-gcc8-dbg"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-TDAQ_PYTHON_PATH"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-centos7-gcc8-dbg"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-x86_64-centos7-gcc8-dbg/bin"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="x86_64-centos7-gcc8-dbg/bin"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-x86_64-centos7-gcc8-dbg/lib"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="x86_64-centos7-gcc8-dbg/lib"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-GCC-bin"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="8.1.0/x86_64-centos7/bin"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-GCC-lib64"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="8.1.0/x86_64-centos7/lib64"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-PYTHONPATH"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-centos7-gcc8-opt"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-ROOTSYS"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/ROOT/6.16.00/x86_64-centos7-gcc8-opt"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-TDAQ_JAVA_HOME"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/java/8u91/x86_64-centos7-gcc8-opt"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-TDAQ_PYTHON_PATH"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-centos7-gcc8-opt"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-x86_64-centos7-gcc8-opt/bin"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="x86_64-centos7-gcc8-opt/bin"/> +</obj> + +<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-x86_64-centos7-gcc8-opt/lib"> + <attr name="HW_Tag" type="enum" val="x86_64-centos7"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="x86_64-centos7-gcc8-opt/lib"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-GCC-bin"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="8.1.0/x86_64-slc6/bin"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-GCC-lib64"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="8.1.0/x86_64-slc6/lib64"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-PYTHONPATH"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-slc6-gcc8-dbg"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-ROOTSYS"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/ROOT/6.16.00/x86_64-slc6-gcc8-dbg"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-TDAQ_JAVA_HOME"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/java/8u91/x86_64-slc6-gcc8-dbg"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-TDAQ_PYTHON_PATH"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-slc6-gcc8-dbg"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-x86_64-slc6-gcc8-dbg/bin"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="x86_64-slc6-gcc8-dbg/bin"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-x86_64-slc6-gcc8-dbg/lib"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-dbg"/> + <attr name="Value" type="string" val="x86_64-slc6-gcc8-dbg/lib"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-GCC-bin"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="8.1.0/x86_64-slc6/bin"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-GCC-lib64"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="8.1.0/x86_64-slc6/lib64"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-PYTHONPATH"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-slc6-gcc8-opt"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-ROOTSYS"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/ROOT/6.16.00/x86_64-slc6-gcc8-opt"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-TDAQ_JAVA_HOME"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/java/8u91/x86_64-slc6-gcc8-opt"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-TDAQ_PYTHON_PATH"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-slc6-gcc8-opt"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-x86_64-slc6-gcc8-opt/bin"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="x86_64-slc6-gcc8-opt/bin"/> +</obj> + +<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-x86_64-slc6-gcc8-opt/lib"> + <attr name="HW_Tag" type="enum" val="x86_64-slc6"/> + <attr name="SW_Tag" type="enum" val="gcc8-opt"/> + <attr name="Value" type="string" val="x86_64-slc6-gcc8-opt/lib"/> +</obj> + +<obj class="TemplateSegment" id="HLT-1"> + <rel name="Resources"> + <ref class="MIGApplication" id="DefMIG-IS"/> + <ref class="MIGApplication" id="DefMIG-OH"/> + </rel> + <rel name="Infrastructure"> + <ref class="IPCServiceTemplateApplication" id="DF_Histogramming"/> + <ref class="IPCServiceTemplateApplication" id="DF_IS"/> + <ref class="IPCServiceTemplateApplication" id="DefRDB"/> + </rel> + <rel name="Applications"> + <ref class="HLTMPPUApplication" id="HLTMPPU-1"/> + <ref class="HLTRCApplication" id="HLTRC"/> + <ref class="DcmApplication" id="dcm"/> + </rel> + <rel name="IsControlledBy" class="RunControlTemplateApplication" id="DefRC"/> + <rel name="Racks"> + <ref class="Rack" id="dummyRack"/> + </rel> +</obj> + +<obj class="Test4CORBAServant" id="test_corba_server"> + <attr name="Scope" type="enum"> + <data val="functional"/> + </attr> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="0"/> + <attr name="ServantName" type="string" val="#this.IPCName"/> + <attr name="ServantType" type="string" val="#this.InterfaceName"/> + <attr name="ClassName" type="class"> + <data val="IPCServiceApplicationBase"/> + </attr> + <attr name="CPartitionName" type="string" val="${TDAQ_PARTITION}"/> + <rel name="ExecDependsOnSuccess"> + <ref class="Test4Class" id="TestInfrAppRunning"/> + <ref class="Test4Class" id="TestRCAppRunning"/> + </rel> + <rel name="Failures"> + <ref class="TestFailure" id="GenericCORBAFailure"/> + </rel> +</obj> + +<obj class="Test4CORBAServant" id="test_pmg_server"> + <attr name="Scope" type="enum"> + <data val="any"/> + </attr> + <attr name="Validity" type="s32" val="60"/> + <attr name="RepeatIfUnresolved" type="bool" val="1"/> + <attr name="ServantName" type="string" val="AGENT_#this.UID"/> + <attr name="ServantType" type="string" val="pmgpriv/SERVER"/> + <attr name="ClassName" type="class"> + <data val="Computer"/> + </attr> + <attr name="CPartitionName" type="string" val="initial"/> + <rel name="Failures"> + <ref class="TestFailure" id="RebootAction"/> + <ref class="TestFailure" id="GenericCORBAFailure"/> + </rel> +</obj> + +<obj class="Test4Class" id="TestComputer"> + <attr name="Timeout" type="s32" val="15"/> + <attr name="Scope" type="enum"> + <data val="diagnostics"/> + </attr> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="0"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="ClassName" type="class" val="Computer"/> + <rel name="ExecDependsOnFailure"> + <ref class="Test4Class" id="TestPMG"/> + </rel> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_host"/> + </rel> +</obj> + +<obj class="Test4Class" id="TestEmulatedReadoutModule"> + <attr name="Timeout" type="s32" val="15"/> + <attr name="Scope" type="enum"> + <data val="functional"/> + </attr> + <attr name="Complexity" type="u8" val="2"/> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="0"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="ClassName" type="class" val="EmulatedReadoutModule"/> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_dummy"/> + </rel> +</obj> + +<obj class="Test4Class" id="TestHW_Object"> + <attr name="Timeout" type="s32" val="15"/> + <attr name="Scope" type="enum"> + <data val="precondition"/> + </attr> + <attr name="Complexity" type="u8" val="2"/> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="0"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="ClassName" type="class" val="HW_Object"/> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_dummy"/> + </rel> +</obj> + +<obj class="Test4Class" id="TestHW_System"> + <attr name="Timeout" type="s32" val="15"/> + <attr name="Scope" type="enum"> + <data val="precondition"/> + </attr> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="0"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="ClassName" type="class" val="HW_System"/> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_dummy"/> + </rel> +</obj> + +<obj class="Test4Class" id="TestInfrAppRunning"> + <attr name="Timeout" type="s32" val="15"/> + <attr name="Scope" type="enum"> + <data val="functional"/> + <data val="diagnostics"/> + </attr> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="0"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="ClassName" type="class" val="InfrastructureBase"/> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_app_pmg"/> + </rel> +</obj> + +<obj class="Test4Class" id="TestInputChannel"> + <attr name="Timeout" type="s32" val="15"/> + <attr name="Scope" type="enum"> + <data val="functional"/> + </attr> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="0"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="ClassName" type="class" val="InputChannel"/> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_dummy"/> + </rel> +</obj> + +<obj class="Test4Class" id="TestNIC"> + <attr name="Timeout" type="s32" val="5"/> + <attr name="Scope" type="enum"> + <data val="any"/> + </attr> + <attr name="Complexity" type="u8" val="1"/> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="0"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="ClassName" type="class" val="NetworkInterface"/> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_nic_dummy"/> + </rel> +</obj> + +<obj class="Test4Class" id="TestPMG"> + <attr name="Timeout" type="s32" val="15"/> + <attr name="Scope" type="enum"> + <data val="any"/> + </attr> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="1"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="ClassName" type="class" val="Computer"/> + <rel name="ExecDependsOnSuccess"> + <ref class="Test4CORBAServant" id="test_pmg_server"/> + </rel> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_dummy"/> + </rel> +</obj> + +<obj class="Test4Class" id="TestProgramFile"> + <attr name="Timeout" type="s32" val="15"/> + <attr name="Scope" type="enum"> + <data val="precondition"/> + </attr> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="0"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="ClassName" type="class" val="SW_Object"/> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_program_file"/> + </rel> +</obj> + +<obj class="Test4Class" id="TestRCAppRunning"> + <attr name="Timeout" type="s32" val="15"/> + <attr name="Scope" type="enum"> + <data val="functional"/> + <data val="diagnostics"/> + </attr> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="0"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="ClassName" type="class" val="RunControlApplicationBase"/> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_app_pmg"/> + </rel> +</obj> + +<obj class="Test4Class" id="TestRCApplicationDummy"> + <attr name="Timeout" type="s32" val="50"/> + <attr name="Scope" type="enum"> + <data val="diagnostics"/> + </attr> + <attr name="Complexity" type="u8" val="3"/> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="0"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="ClassName" type="class" val="RunControlApplicationBase"/> + <rel name="ExecDependsOnSuccess"> + <ref class="Test4Class" id="TestRCDummy"/> + </rel> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_dummy_long"/> + <ref class="Executable" id="test_dummy_fail_0.01"/> + </rel> +</obj> + +<obj class="Test4Class" id="TestRCDummy"> + <attr name="Timeout" type="s32" val="10"/> + <attr name="Scope" type="enum"> + <data val="diagnostics"/> + </attr> + <attr name="Complexity" type="u8" val="3"/> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="0"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="ClassName" type="class" val="RunControlApplicationBase"/> + <rel name="ExecDependsOnFailure"> + <ref class="Test4Class" id="TestRCAppRunning"/> + </rel> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + <ref class="TestFailure" id="OHCleanFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_dummy"/> + </rel> +</obj> + +<obj class="Test4Object" id="TestIPCServer"> + <attr name="Timeout" type="s32" val="15"/> + <attr name="Scope" type="enum"> + <data val="functional"/> + </attr> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="0"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="OverrideTest4Class" type="bool" val="0"/> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_ipc_server"/> + </rel> + <rel name="Objects"> + <ref class="Binary" id="ipc_server"/> + </rel> +</obj> + +<obj class="Test4Object" id="TestISServer"> + <attr name="Timeout" type="s32" val="30"/> + <attr name="Scope" type="enum"> + <data val="functional"/> + </attr> + <attr name="Complexity" type="u8" val="2"/> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="1"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="OverrideTest4Class" type="bool" val="0"/> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_is_server"/> + </rel> + <rel name="Objects"> + <ref class="IPCServiceApplication" id="DF"/> + <ref class="IPCServiceApplication" id="Histogramming"/> + <ref class="IPCServiceTemplateApplication" id="DF_Histogramming"/> + <ref class="IPCServiceTemplateApplication" id="DF_IS"/> + <ref class="IPCServiceApplication" id="DDC"/> + <ref class="IPCServiceApplication" id="DFConfig"/> + <ref class="IPCServiceApplication" id="DQM"/> + <ref class="IPCServiceApplication" id="MTS"/> + <ref class="IPCServiceApplication" id="Monitoring"/> + <ref class="IPCServiceApplication" id="PMG"/> + <ref class="IPCServiceApplication" id="RunCtrl"/> + <ref class="IPCServiceApplication" id="RunCtrlStatistics"/> + <ref class="IPCServiceApplication" id="RunParams"/> + <ref class="IPCServiceApplication" id="Setup"/> + </rel> +</obj> + +<obj class="Test4Object" id="TestISServer_initial"> + <attr name="Timeout" type="s32" val="15"/> + <attr name="Scope" type="enum"> + <data val="functional"/> + </attr> + <attr name="Complexity" type="u8" val="2"/> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="1"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="OverrideTest4Class" type="bool" val="0"/> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_is_server_initial"/> + </rel> + <rel name="Objects"> + <ref class="IPCServiceTemplateApplication" id="DF_Histogramming"/> + <ref class="IPCServiceTemplateApplication" id="DF_IS"/> + <ref class="IPCServiceApplication" id="LHC"/> + <ref class="IPCServiceApplication" id="MTS_IS"/> + <ref class="IPCServiceApplication" id="PMG_IS"/> + <ref class="IPCServiceApplication" id="RunCtrl_IS"/> + <ref class="IPCServiceApplication" id="RunParams_IS"/> + <ref class="IPCServiceApplication" id="Setup_IS"/> + </rel> +</obj> + +<obj class="Test4Object" id="TestOHClean"> + <attr name="Timeout" type="s32" val="30"/> + <attr name="Scope" type="enum"> + <data val="any"/> + </attr> + <attr name="Validity" type="s32" val="0"/> + <attr name="RepeatIfUnresolved" type="bool" val="1"/> + <attr name="Interactive" type="bool" val="0"/> + <attr name="OverrideTest4Class" type="bool" val="1"/> + <rel name="Failures"> + <ref class="TestFailure" id="GenericTestFailure"/> + </rel> + <rel name="Runs"> + <ref class="Executable" id="test_dummy"/> + </rel> + <rel name="Objects"> + <ref class="CustomLifetimeApplication" id="oh_clean_SOR"/> + </rel> +</obj> + +<obj class="TestBehavior" id="BaseApplication_BackupHosts"> + <attr name="RelationshipName" type="string" val="get_backup_hosts()"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="BaseApplication_Host"> + <attr name="RelationshipName" type="string" val="get_host()"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="BaseApplication_Program"> + <attr name="RelationshipName" type="string" val="Program"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="1"/> +</obj> + +<obj class="TestBehavior" id="ComputerSet_Contains"> + <attr name="RelationshipName" type="string" val="Contains"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="Computer_Interfaces"> + <attr name="RelationshipName" type="string" val="Interfaces"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="Crate_ControlHost"> + <attr name="RelationshipName" type="string" val="ControlHost"/> + <attr name="SynchronousTesting" type="bool" val="1"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="Crate_Modules"> + <attr name="RelationshipName" type="string" val="Modules"/> + <attr name="SynchronousTesting" type="bool" val="1"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="HW_System_HW_Objects"> + <attr name="RelationshipName" type="string" val="HW_Objects"/> + <attr name="SynchronousTesting" type="bool" val="1"/> + <attr name="StopOnError" type="bool" val="1"/> +</obj> + +<obj class="TestBehavior" id="HW_System_HW_Systems"> + <attr name="RelationshipName" type="string" val="HW_Systems"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="OnlineSegment_InitialPartition"> + <attr name="RelationshipName" type="string" val="InitialPartition"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="1"/> +</obj> + +<obj class="TestBehavior" id="OnlineSegment_TestHosts"> + <attr name="RelationshipName" type="string" val="TestHosts"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="Partition_DefaultHost"> + <attr name="RelationshipName" type="string" val="DefaultHost"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="Partition_OnlineInfrastructure"> + <attr name="RelationshipName" type="string" val="OnlineInfrastructure"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="Partition_Segments"> + <attr name="RelationshipName" type="string" val="Segments"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="ResourceSet_Contains"> + <attr name="RelationshipName" type="string" val="Contains"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="1"/> +</obj> + +<obj class="TestBehavior" id="Segment_Applications"> + <attr name="RelationshipName" type="string" val="get_applications()"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="Segment_ChildSegmentControllers"> + <attr name="RelationshipName" type="string" val="get_nested_segments().get_controller()"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="Segment_ChildSegmentInfrastructure"> + <attr name="RelationshipName" type="string" val="get_nested_segments().get_infrastructure()"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="Segment_Hosts"> + <attr name="RelationshipName" type="string" val="get_hosts()"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="Segment_Infrastructure"> + <attr name="RelationshipName" type="string" val="get_infrastructure()"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="Segment_IsControlledBy"> + <attr name="RelationshipName" type="string" val="get_controller()"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="Segment_Resources"> + <attr name="RelationshipName" type="string" val="Resources"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> + <attr name="IgnoreClasses" type="class"> + <data val="BaseApplication"/> + </attr> +</obj> + +<obj class="TestBehavior" id="Segment_Segments"> + <attr name="RelationshipName" type="string" val="get_nested_segments()"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> +</obj> + +<obj class="TestBehavior" id="Segment_UsesObjects"> + <attr name="RelationshipName" type="string" val="UsesObjects"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="1"/> +</obj> + +<obj class="TestBehavior" id="Segment_UsesSystems"> + <attr name="RelationshipName" type="string" val="UsesSystems"/> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="1"/> +</obj> + +<obj class="TestFailure" id="GenericCORBAFailure"> + <attr name="ReturnCode" type="u32" val="183"/> + <attr name="diagnosis" type="string" val="The component cannot be contacted over IPC, or fails its internal IPC test."/> +</obj> + +<obj class="TestFailure" id="GenericTestFailure"> + <attr name="ReturnCode" type="u32" val="183"/> + <attr name="diagnosis" type="string" val="The component is not working correctly."/> +</obj> + +<obj class="TestFailure" id="OHCleanFailure"> + <attr name="ReturnCode" type="u32" val="7"/> + <attr name="diagnosis" type="string" val="The host is in such a bad shape that it has to be rebooted."/> +</obj> + +<obj class="TestFailure" id="RebootAction"> + <attr name="ReturnCode" type="u32" val="183"/> + <attr name="diagnosis" type="string" val="The host is in such a bad shape that it has to be rebooted."/> +</obj> + +<obj class="TestFailureAction" id="TestExtraComputer"> + <attr name="action" type="enum" val="test"/> + <attr name="parameters" type="string" val="{ Component: #this.RunsOn.UID; Scope: diagnosis }"/> +</obj> + +<obj class="TestFailureAction" id="TestVM"> + <attr name="action" type="enum" val="test"/> + <attr name="parameters" type="string" val="{ Component: vm-tbed-onl-02.cern.ch; Scope: diagnosis }"/> +</obj> + +<obj class="TestPolicy4Class" id="BaseApplicationPolicy"> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> + <attr name="TestOfContainer" type="enum" val="last"/> + <attr name="Class" type="class" val="BaseApplication"/> + <rel name="RelationsSequence"> + <ref class="TestBehavior" id="BaseApplication_Host"/> + <ref class="TestBehavior" id="BaseApplication_BackupHosts"/> + </rel> +</obj> + +<obj class="TestPolicy4Class" id="ComputerPolicy"> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> + <attr name="TestOfContainer" type="enum" val="last"/> + <attr name="Class" type="class" val="Computer"/> + <rel name="RelationsSequence"> + <ref class="TestBehavior" id="Computer_Interfaces"/> + </rel> +</obj> + +<obj class="TestPolicy4Class" id="ComputerSetPolicy"> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> + <attr name="TestOfContainer" type="enum" val="last"/> + <attr name="Class" type="class" val="ComputerSet"/> + <rel name="RelationsSequence"> + <ref class="TestBehavior" id="ComputerSet_Contains"/> + </rel> +</obj> + +<obj class="TestPolicy4Class" id="CratePolicy"> + <attr name="SynchronousTesting" type="bool" val="1"/> + <attr name="StopOnError" type="bool" val="0"/> + <attr name="TestOfContainer" type="enum" val="first"/> + <attr name="Class" type="class" val="Crate"/> + <rel name="RelationsSequence"> + <ref class="TestBehavior" id="Crate_ControlHost"/> + <ref class="TestBehavior" id="Crate_Modules"/> + </rel> +</obj> + +<obj class="TestPolicy4Class" id="HW_SystemPolicy"> + <attr name="SynchronousTesting" type="bool" val="1"/> + <attr name="StopOnError" type="bool" val="1"/> + <attr name="TestOfContainer" type="enum" val="last"/> + <attr name="Class" type="class" val="HW_System"/> + <rel name="RelationsSequence"> + <ref class="TestBehavior" id="HW_System_HW_Objects"/> + <ref class="TestBehavior" id="HW_System_HW_Systems"/> + </rel> +</obj> + +<obj class="TestPolicy4Class" id="OnlineSegmentPolicy"> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="1"/> + <attr name="TestOfContainer" type="enum" val="last"/> + <attr name="Class" type="class" val="OnlineSegment"/> + <rel name="RelationsSequence"> + <ref class="TestBehavior" id="OnlineSegment_TestHosts"/> + <ref class="TestBehavior" id="Segment_UsesSystems"/> + <ref class="TestBehavior" id="Segment_UsesObjects"/> + <ref class="TestBehavior" id="Segment_Hosts"/> + <ref class="TestBehavior" id="Segment_IsControlledBy"/> + <ref class="TestBehavior" id="Segment_Resources"/> + <ref class="TestBehavior" id="Segment_Applications"/> + <ref class="TestBehavior" id="Segment_Infrastructure"/> + <ref class="TestBehavior" id="Segment_ChildSegmentControllers"/> + <ref class="TestBehavior" id="Segment_ChildSegmentInfrastructure"/> + </rel> +</obj> + +<obj class="TestPolicy4Class" id="PartitionPolicy"> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> + <attr name="TestOfContainer" type="enum" val="last"/> + <attr name="Class" type="class" val="Partition"/> + <rel name="RelationsSequence"> + <ref class="TestBehavior" id="Partition_DefaultHost"/> + <ref class="TestBehavior" id="Partition_OnlineInfrastructure"/> + <ref class="TestBehavior" id="Partition_Segments"/> + </rel> +</obj> + +<obj class="TestPolicy4Class" id="ResourceSetPolicy"> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> + <attr name="TestOfContainer" type="enum" val="last"/> + <attr name="Class" type="class" val="ResourceSet"/> + <rel name="RelationsSequence"> + <ref class="TestBehavior" id="ResourceSet_Contains"/> + </rel> +</obj> + +<obj class="TestPolicy4Class" id="SegmentPolicy"> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> + <attr name="TestOfContainer" type="enum" val="last"/> + <attr name="Class" type="class" val="Segment"/> + <rel name="RelationsSequence"> + <ref class="TestBehavior" id="Segment_UsesSystems"/> + <ref class="TestBehavior" id="Segment_UsesObjects"/> + <ref class="TestBehavior" id="Segment_Hosts"/> + <ref class="TestBehavior" id="Segment_Resources"/> + <ref class="TestBehavior" id="Segment_Segments"/> + <ref class="TestBehavior" id="Segment_Applications"/> + <ref class="TestBehavior" id="Segment_ChildSegmentControllers"/> + <ref class="TestBehavior" id="Segment_ChildSegmentInfrastructure"/> + </rel> +</obj> + +<obj class="TestPolicy4Class" id="TemplateSegmentPolicy"> + <attr name="SynchronousTesting" type="bool" val="0"/> + <attr name="StopOnError" type="bool" val="0"/> + <attr name="TestOfContainer" type="enum" val="last"/> + <attr name="Class" type="class" val="TemplateSegment"/> + <rel name="RelationsSequence"> + <ref class="TestBehavior" id="Segment_Applications"/> + <ref class="TestBehavior" id="Segment_Hosts"/> + <ref class="TestBehavior" id="Segment_Infrastructure"/> + <ref class="TestBehavior" id="Segment_IsControlledBy"/> + </rel> +</obj> + +<obj class="TestSet" id="InitialInfrastructureTests"> + <rel name="tests"> + <ref class="Test4Object" id="TestISServer_initial"/> + </rel> +</obj> + +<obj class="TestSet" id="OnlineInfrastructureTests"> + <rel name="tests"> + <ref class="Test4Object" id="TestISServer"/> + <ref class="Test4Object" id="TestOHClean"/> + </rel> +</obj> + +<obj class="TestSet" id="TDAQ_Tests"> + <rel name="tests"> + <ref class="Test4CORBAServant" id="test_corba_server"/> + <ref class="Test4CORBAServant" id="test_pmg_server"/> + <ref class="Test4Class" id="TestPMG"/> + <ref class="Test4Class" id="TestComputer"/> + <ref class="Test4Object" id="TestIPCServer"/> + <ref class="Test4Class" id="TestInfrAppRunning"/> + <ref class="Test4Class" id="TestRCAppRunning"/> + <ref class="Test4Class" id="TestNIC"/> + </rel> + <rel name="TestPolicies"> + <ref class="TestPolicy4Class" id="PartitionPolicy"/> + <ref class="TestPolicy4Class" id="OnlineSegmentPolicy"/> + <ref class="TestPolicy4Class" id="SegmentPolicy"/> + <ref class="TestPolicy4Class" id="BaseApplicationPolicy"/> + <ref class="TestPolicy4Class" id="ComputerPolicy"/> + <ref class="TestPolicy4Class" id="HW_SystemPolicy"/> + <ref class="TestPolicy4Class" id="ComputerSetPolicy"/> + <ref class="TestPolicy4Class" id="CratePolicy"/> + <ref class="TestPolicy4Class" id="ResourceSetPolicy"/> + <ref class="TestPolicy4Class" id="TemplateSegmentPolicy"/> + </rel> +</obj> + +<obj class="TriggerConfiguration" id="PuDummyTriggerConfig-1"> + <rel name="l1" class="L1TriggerConfiguration" id="L1TrigConf"/> + <rel name="hlt" class="PuDummySteering" id="HLT-Dummy-Steering"/> +</obj> + +<obj class="Variable" id="AM_DB_HOST"> + <attr name="Description" type="string" val="Host where MySQL DB with AM rights is running"/> + <attr name="Name" type="string" val="AM_DB_HOST"/> + <attr name="Value" type="string" val="pcatd84"/> +</obj> + +<obj class="Variable" id="AtlasSetup"> + <attr name="Name" type="string" val="AtlasSetup"/> + <attr name="Value" type="string" val="/afs/cern.ch/atlas/software/dist/AtlasSetup"/> +</obj> + +<obj class="Variable" id="BOOST_HOME"> + <attr name="Name" type="string" val="BOOST_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/Boost/1.69.0"/> +</obj> + +<obj class="Variable" id="BOOST_VERSION"> + <attr name="Name" type="string" val="BOOST_VERSION"/> + <attr name="Value" type="string" val="1.69.0"/> +</obj> + +<obj class="Variable" id="COOL_HOME"> + <attr name="Name" type="string" val="COOL_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/COOL/3_2_0"/> +</obj> + +<obj class="Variable" id="COOL_VERSION"> + <attr name="Name" type="string" val="COOL_VERSION"/> + <attr name="Value" type="string" val="320"/> +</obj> + +<obj class="Variable" id="CORAL_AUTH_PATH"> + <attr name="Name" type="string" val="CORAL_AUTH_PATH"/> + <attr name="Value" type="string" val="/eos/user/a/atdaqeos/adm/db/.coral"/> +</obj> + +<obj class="Variable" id="CORAL_HOME"> + <attr name="Name" type="string" val="CORAL_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/CORAL/3_2_0"/> +</obj> + +<obj class="Variable" id="CORAL_MSGFORMAT"> + <attr name="Description" type="string" val="Selects format for CORAL server log messages"/> + <attr name="Name" type="string" val="CORAL_MSGFORMAT"/> + <attr name="Value" type="string" val="ATLAS"/> +</obj> + +<obj class="Variable" id="CORAL_MSGLEVEL"> + <attr name="Description" type="string" val="Defines CORAL server log message level"/> + <attr name="Name" type="string" val="CORAL_MSGLEVEL"/> + <attr name="Value" type="string" val="info"/> +</obj> + +<obj class="Variable" id="CORAL_ORA_SKIP_TRANS_READONLY"> + <attr name="Description" type="string" val="Toggles use of transactions in read-only access"/> + <attr name="Name" type="string" val="CORAL_ORA_SKIP_TRANS_READONLY"/> + <attr name="Value" type="string" val="yes"/> +</obj> + +<obj class="Variable" id="CORAL_VERSION"> + <attr name="Name" type="string" val="CORAL_VERSION"/> + <attr name="Value" type="string" val="320"/> +</obj> + +<obj class="Variable" id="CPPUNIT_HOME"> + <attr name="Name" type="string" val="CPPUNIT_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/CppUnit/1.12.1_p1"/> +</obj> + +<obj class="Variable" id="CPPUNIT_VERSION"> + <attr name="Name" type="string" val="CPPUNIT_VERSION"/> + <attr name="Value" type="string" val="1.12.1_p1"/> +</obj> + +<obj class="Variable" id="CS_CORAL_AUTH_PATH"> + <attr name="Description" type="string" val="Accounts / passwords for DBs"/> + <attr name="Name" type="string" val="CORAL_AUTH_PATH"/> + <attr name="Value" type="string" val="/eos/user/a/atdaqeos/adm/db/.coral/CoralServer"/> +</obj> + +<obj class="Variable" id="CS_CORAL_DBLOOKUP_PATH"> + <attr name="Description" type="string" val="Aliases for DBs"/> + <attr name="Name" type="string" val="CORAL_DBLOOKUP_PATH"/> + <attr name="Value" type="string" val="/eos/user/a/atdaqeos/adm/db/.coral/CoralServer"/> +</obj> + +<obj class="Variable" id="DEFAULT_HLT_CORAL_AUTH_PATH"> + <attr name="Name" type="string" val="CORAL_AUTH_PATH"/> +</obj> + +<obj class="Variable" id="DEFAULT_HLT_CORAL_DBLOOKUP_PATH"> + <attr name="Name" type="string" val="CORAL_DBLOOKUP_PATH"/> + <attr name="Value" type="string" val="/tmp/coral-proxy/${TDAQ_PARTITION}"/> +</obj> + +<obj class="Variable" id="DEF_DEBUG_STREAM"> + <attr name="Description" type="string" val="Destination and filter for DEBUG messages"/> + <attr name="Name" type="string" val="TDAQ_ERS_DEBUG"/> + <attr name="Value" type="string" val="lstdout"/> +</obj> + +<obj class="Variable" id="DEF_ERROR_STREAM"> + <attr name="Description" type="string" val="Destination and filter for ERROR messages"/> + <attr name="Name" type="string" val="TDAQ_ERS_ERROR"/> + <attr name="Value" type="string" val="throttle,lstderr,mts"/> +</obj> + +<obj class="Variable" id="DEF_ERS_DEBUG_LEVEL"> + <attr name="Description" type="string" val="Debug level above which messages are not filtered in dbg mode"/> + <attr name="Name" type="string" val="TDAQ_ERS_DEBUG_LEVEL"/> + <attr name="Value" type="string" val="0"/> +</obj> + +<obj class="Variable" id="DEF_ERS_SIGNAL_HANDLERS"> + <attr name="Description" type="string" val="Install/deinstall ERS signal handlers"/> + <attr name="Name" type="string" val="TDAQ_ERS_NO_SIGNAL_HANDLERS"/> + <attr name="Value" type="string" val="1"/> +</obj> + +<obj class="Variable" id="DEF_FATAL_STREAM"> + <attr name="Description" type="string" val="Destination and filter for FATAL messages"/> + <attr name="Name" type="string" val="TDAQ_ERS_FATAL"/> + <attr name="Value" type="string" val="lstderr,mts"/> +</obj> + +<obj class="Variable" id="DEF_INFO_STREAM"> + <attr name="Description" type="string" val="Destination and filter for INFO messages"/> + <attr name="Name" type="string" val="TDAQ_ERS_INFO"/> + <attr name="Value" type="string" val="throttle,lstdout,mts"/> +</obj> + +<obj class="Variable" id="DEF_WARNING_STREAM"> + <attr name="Description" type="string" val="Destination and filter for WARNING messages"/> + <attr name="Name" type="string" val="TDAQ_ERS_WARNING"/> + <attr name="Value" type="string" val="throttle,lstderr,mts"/> +</obj> + +<obj class="Variable" id="DF_IS_NAME"> + <attr name="Name" type="string" val="DF_IS_SERVER_NAME"/> + <attr name="Value" type="string" val="DF"/> +</obj> + +<obj class="Variable" id="DQM_IS_NAME"> + <attr name="Name" type="string" val="DQM_IS_SERVER_NAME"/> + <attr name="Value" type="string" val="DQM"/> +</obj> + +<obj class="Variable" id="ERROR_STREAM_NOMTS"> + <attr name="Description" type="string" val="Destination and filter for ERROR messages"/> + <attr name="Name" type="string" val="TDAQ_ERS_ERROR"/> + <attr name="Value" type="string" val="lstderr"/> +</obj> + +<obj class="Variable" id="FATAL_STREAM_NOMTS"> + <attr name="Description" type="string" val="Destination and filter for FATAL messages"/> + <attr name="Name" type="string" val="TDAQ_ERS_FATAL"/> + <attr name="Value" type="string" val="lstderr"/> +</obj> + +<obj class="Variable" id="FUTURE_HOME"> + <attr name="Name" type="string" val="FUTURE_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/future/0.16.0"/> +</obj> + +<obj class="Variable" id="FUTURE_VERSION"> + <attr name="Name" type="string" val="FUTURE_VERSION"/> + <attr name="Value" type="string" val="0.16.0"/> +</obj> + +<obj class="Variable" id="GCC_HOME"> + <attr name="Name" type="string" val="GCC_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/gcc"/> +</obj> + +<obj class="Variable" id="GLIB_HOME"> + <attr name="Name" type="string" val="GLIB_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/glib/2.52.2"/> +</obj> + +<obj class="Variable" id="GLIB_VERSION"> + <attr name="Name" type="string" val="GLIB_VERSION"/> + <attr name="Value" type="string" val="2.52.2"/> +</obj> + +<obj class="Variable" id="HIST_IS_NAME"> + <attr name="Name" type="string" val="HISTO_IS_SERVER_NAME"/> + <attr name="Value" type="string" val="Histogramming"/> +</obj> + +<obj class="Variable" id="INFO_STREAM_NOMTS"> + <attr name="Description" type="string" val="Destination and filter for INFO messages"/> + <attr name="Name" type="string" val="TDAQ_ERS_INFO"/> + <attr name="Value" type="string" val="lstdout"/> +</obj> + +<obj class="Variable" id="INSTRUMENT"> + <attr name="Name" type="string" val="INSTRUMENT"/> +</obj> + +<obj class="Variable" id="JAVA_HOME"> + <attr name="Name" type="string" val="JAVA_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/java/8u91"/> +</obj> + +<obj class="Variable" id="JAVA_VERSION"> + <attr name="Name" type="string" val="JAVA_VERSION"/> + <attr name="Value" type="string" val="8u91"/> +</obj> + +<obj class="Variable" id="LCG_INST_PATH"> + <attr name="Name" type="string" val="LCG_INST_PATH"/> + <attr name="Value" type="string" val="/cvmfs/sft.cern.ch/lcg/releases"/> +</obj> + +<obj class="Variable" id="LIBFFI_HOME"> + <attr name="Name" type="string" val="LIBFFI_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/libffi/3.2.1"/> +</obj> + +<obj class="Variable" id="LIBFFI_VERSION"> + <attr name="Name" type="string" val="LIBFFI_VERSION"/> + <attr name="Value" type="string" val="3.2.1"/> +</obj> + +<obj class="Variable" id="LIBXKBCOMMON_HOME"> + <attr name="Name" type="string" val="LIBXKBCOMMON_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/libxkbcommon/0.7.1"/> +</obj> + +<obj class="Variable" id="LIBXKBCOMMON_VERSION"> + <attr name="Name" type="string" val="LIBXKBCOMMON_VERSION"/> + <attr name="Value" type="string" val="0.7.1"/> +</obj> + +<obj class="Variable" id="LOGGER_CONNECT"> + <attr name="Description" type="string" val="DB connect string for logger app"/> + <attr name="Name" type="string" val="LOGGER_CONNECT"/> + <attr name="Value" type="string" val="oracle://INTR/atlas_log_messg"/> +</obj> + +<obj class="Variable" id="MON_IS_NAME"> + <attr name="Name" type="string" val="MON_IS_SERVER_NAME"/> + <attr name="Value" type="string" val="Monitoring"/> +</obj> + +<obj class="Variable" id="MRS_AUDIO_PLAYER"> + <attr name="Description" type="string" val="Binary used to play .au audio files."/> + <attr name="Name" type="string" val="TDAQ_MRS_AUDIO_PLAYER"/> + <attr name="Value" type="string" val="/usr/bin/play"/> +</obj> + +<obj class="Variable" id="MTS_ERS_STREAM"> + <attr name="Description" type="string" val="makes ERS to load MTS stream"/> + <attr name="Name" type="string" val="TDAQ_ERS_STREAM_LIBS"/> + <attr name="Value" type="string" val="mtsStreams"/> +</obj> + +<obj class="Variable" id="MYSQL_HOME"> + <attr name="Name" type="string" val="MYSQL_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/mysql/5.7.20"/> +</obj> + +<obj class="Variable" id="MYSQL_VERSION"> + <attr name="Name" type="string" val="MYSQL_VERSION"/> + <attr name="Value" type="string" val="5.7.20"/> +</obj> + +<obj class="Variable" id="OKS2CORAL_CONNECT"> + <attr name="Description" type="string" val="Site specific database connection string"/> + <attr name="Name" type="string" val="OKS2CORAL_CONNECT"/> + <attr name="Value" type="string" val="oracle://INTR/tdaq_dev_backup_w ${OKS2CORAL_PARAMS}"/> +</obj> + +<obj class="Variable" id="OKS2CORAL_PARAMS"> + <attr name="Description" type="string" val="Extra oks2coral parameters to define schema version and max numbers of inserted rows"/> + <attr name="Name" type="string" val="OKS2CORAL_PARAMS"/> + <attr name="Value" type="string" val="-x 512 -X 1024"/> +</obj> + +<obj class="Variable" id="OKS2CORAL_TMP_DIR"> + <attr name="Description" type="string" val="Where oks2coral saves temporary files for archiving. It mush be either a directory in a common file system, or oks2coral binary and oks2coral_mk_tmp_file script shall be run on the same host. Never set this value to /tmp!"/> + <attr name="Name" type="string" val="OKS2CORAL_TMP_DIR"/> + <attr name="Value" type="string" val="/eos/user/a/atdaqeos/adm/db/v19/daq/.oks2coral_cache"/> +</obj> + +<obj class="Variable" id="OKS2CORAL_WORKING_SCHEMA"> + <attr name="Description" type="string" val="Site specific database working schema (i.e. user that is owner of relational database tables)"/> + <attr name="Name" type="string" val="OKS2CORAL_WORKING_SCHEMA"/> + <attr name="Value" type="string" val="atlas_oks_archive"/> +</obj> + +<obj class="Variable" id="OKS_DB_ROOT"> + <attr name="Description" type="string" val="Path to get oks files which are not part of standard DB area."/> + <attr name="Name" type="string" val="OKS_DB_ROOT"/> + <attr name="Value" type="string" val="${TDAQ_INST_PATH}/share/data"/> +</obj> + +<obj class="Variable" id="OKS_VERBOSE"> + <attr name="Description" type="string" val="Controls verbosity of OKS kernel. "no" means no verbosity, any other value means verbose output."/> + <attr name="Name" type="string" val="OKS_KERNEL_VERBOSE"/> + <attr name="Value" type="string" val="1"/> +</obj> + +<obj class="Variable" id="ORACLE_HOME"> + <attr name="Name" type="string" val="ORACLE_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/oracle/11.2.0.3.0"/> +</obj> + +<obj class="Variable" id="ORACLE_VERSION"> + <attr name="Name" type="string" val="ORACLE_VERSION"/> + <attr name="Value" type="string" val="11.2.0.3.0"/> +</obj> + +<obj class="Variable" id="ORBmaxServerThreadPoolSize"> + <attr name="Name" type="string" val="ORBmaxServerThreadPoolSize"/> + <attr name="Value" type="string" val="10"/> +</obj> + +<obj class="Variable" id="ORBscanGranularity"> + <attr name="Name" type="string" val="ORBscanGranularity"/> + <attr name="Value" type="string" val="0"/> +</obj> + +<obj class="Variable" id="ORBthreadPerConnectionPolicy"> + <attr name="Name" type="string" val="ORBthreadPerConnectionPolicy"/> + <attr name="Value" type="string" val="0"/> +</obj> + +<obj class="Variable" id="PBEAST_MERGED_REPOSITORY"> + <attr name="Description" type="string" val="The P-BEAST repository for merger files (shared by merger and server applications)"/> + <attr name="Name" type="string" val="PBEAST_MERGED_REPOSITORY"/> + <attr name="Value" type="string" val="/data/pbeast-merged"/> +</obj> + +<obj class="Variable" id="PBEAST_RECEIVER_IPC_TIMEOUT"> + <attr name="Description" type="string" val="Timeout for P-BEAST receiver application used for communication with IS servers (subscribe/unsubscribe requests) and IPC.
It should be kept small, since it delays writing P-BEAST data on shutdown."/> + <attr name="Name" type="string" val="TDAQ_IPC_TIMEOUT"/> + <attr name="Value" type="string" val="5000"/> +</obj> + +<obj class="Variable" id="PBEAST_REPOSITORY"> + <attr name="Description" type="string" val="The P-BEAST repository is shared by P-BEAST recevers and merger applications"/> + <attr name="Name" type="string" val="PBEAST_REPOSITORY"/> + <attr name="Value" type="string" val="/data/pbeast"/> +</obj> + +<obj class="Variable" id="PBEAST_SERVER_IPC_TIMEOUT"> + <attr name="Description" type="string" val="Timeout for P-BEAST server application used for communication with P-BEAST servers and receivers.
It should be kept big enough (minutes), since the servers can be quite slow for large data sets."/> + <attr name="Name" type="string" val="TDAQ_IPC_TIMEOUT"/> + <attr name="Value" type="string" val="200000"/> +</obj> + +<obj class="Variable" id="PCRE_HOME"> + <attr name="Name" type="string" val="PCRE_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/pcre/8.38"/> +</obj> + +<obj class="Variable" id="PCRE_VERSION"> + <attr name="Name" type="string" val="PCRE_VERSION"/> + <attr name="Value" type="string" val="8.38"/> +</obj> + +<obj class="Variable" id="PMG_IS_NAME"> + <attr name="Name" type="string" val="PMG_IS_SERVER_NAME"/> + <attr name="Value" type="string" val="PMG"/> +</obj> + +<obj class="Variable" id="PNG_HOME"> + <attr name="Name" type="string" val="PNG_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/png/1.6.17"/> +</obj> + +<obj class="Variable" id="PNG_VERSION"> + <attr name="Name" type="string" val="PNG_VERSION"/> + <attr name="Value" type="string" val="1.6.17"/> +</obj> + +<obj class="Variable" id="POOL_RDB_IPC_TIMEOUT"> + <attr name="Description" type="string" val="IPC communication timeout for segment RDB server"/> + <attr name="Name" type="string" val="TDAQ_IPC_TIMEOUT"/> + <attr name="Value" type="string" val="13000"/> +</obj> + +<obj class="Variable" id="PROTOBUF_HOME"> + <attr name="Name" type="string" val="PROTOBUF_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/protobuf/2.5.0"/> +</obj> + +<obj class="Variable" id="PROTOBUF_VERSION"> + <attr name="Name" type="string" val="PROTOBUF_VERSION"/> + <attr name="Value" type="string" val="2.5.0"/> +</obj> + +<obj class="Variable" id="PYGRAPHICS_HOME"> + <attr name="Name" type="string" val="PYGRAPHICS_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/pygraphics/2.0"/> +</obj> + +<obj class="Variable" id="PYGRAPHICS_VERSION"> + <attr name="Name" type="string" val="PYGRAPHICS_VERSION"/> + <attr name="Value" type="string" val="2.0"/> +</obj> + +<obj class="Variable" id="PYQT5_HOME"> + <attr name="Name" type="string" val="PYQT5_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/pyqt5/5.11.2"/> +</obj> + +<obj class="Variable" id="PYQT5_VERSION"> + <attr name="Name" type="string" val="PYQT5_VERSION"/> + <attr name="Value" type="string" val="5.11.2"/> +</obj> + +<obj class="Variable" id="PYTHONPATH"> + <attr name="Name" type="string" val="PYTHONPATH"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/Python/2.7.15"/> + <rel name="TagValues"> + <ref class="TagMapping" id="x86_64-slc6-gcc8-opt-for-PYTHONPATH"/> + <ref class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-PYTHONPATH"/> + <ref class="TagMapping" id="x86_64-centos7-gcc8-opt-for-PYTHONPATH"/> + <ref class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-PYTHONPATH"/> + </rel> +</obj> + +<obj class="Variable" id="PYTHON_HOME"> + <attr name="Name" type="string" val="PYTHON_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/Python/2.7.15"/> +</obj> + +<obj class="Variable" id="PYTHON_VERSION"> + <attr name="Name" type="string" val="PYTHON_VERSION"/> + <attr name="Value" type="string" val="2.7.15"/> +</obj> + +<obj class="Variable" id="PYTOOLS_HOME"> + <attr name="Name" type="string" val="PYTOOLS_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/pytools/2.0"/> +</obj> + +<obj class="Variable" id="PYTOOLS_VERSION"> + <attr name="Name" type="string" val="PYTOOLS_VERSION"/> + <attr name="Value" type="string" val="2.0"/> +</obj> + +<obj class="Variable" id="QT5_HOME"> + <attr name="Name" type="string" val="QT5_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/Qt5/5.11.1"/> +</obj> + +<obj class="Variable" id="QT5_VERSION"> + <attr name="Name" type="string" val="QT5_VERSION"/> + <attr name="Value" type="string" val="5.11.1"/> +</obj> + +<obj class="Variable" id="RC_IS_NAME"> + <attr name="Name" type="string" val="RC_IS_SERVER_NAME"/> + <attr name="Value" type="string" val="RunCtrl"/> +</obj> + +<obj class="Variable" id="ROOTSYS"> + <attr name="Name" type="string" val="ROOTSYS"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/ROOT/6.16.00"/> + <rel name="TagValues"> + <ref class="TagMapping" id="x86_64-slc6-gcc8-opt-for-ROOTSYS"/> + <ref class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-ROOTSYS"/> + <ref class="TagMapping" id="x86_64-centos7-gcc8-opt-for-ROOTSYS"/> + <ref class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-ROOTSYS"/> + </rel> +</obj> + +<obj class="Variable" id="ROOT_CTRL_DEBUG"> + <attr name="Description" type="string" val="Debug level above which messages are not filtered in dbg mode"/> + <attr name="Name" type="string" val="TDAQ_ERS_DEBUG_LEVEL"/> + <attr name="Value" type="string" val="0"/> +</obj> + +<obj class="Variable" id="ROOT_HOME"> + <attr name="Name" type="string" val="ROOT_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/ROOT/6.16.00"/> +</obj> + +<obj class="Variable" id="ROOT_VERSION"> + <attr name="Name" type="string" val="ROOT_VERSION"/> + <attr name="Value" type="string" val="6.16.00"/> +</obj> + +<obj class="Variable" id="RP_IS_NAME"> + <attr name="Name" type="string" val="RUN_PARAMS_IS_SERVER_NAME"/> + <attr name="Value" type="string" val="RunParams"/> +</obj> + +<obj class="Variable" id="SETUP_IS_SERVER_NAME"> + <attr name="Name" type="string" val="SETUP_IS_SERVER_NAME"/> + <attr name="Value" type="string" val="Setup"/> +</obj> + +<obj class="Variable" id="SQLITE_HOME"> + <attr name="Name" type="string" val="SQLITE_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/sqlite/3210000"/> +</obj> + +<obj class="Variable" id="SQLITE_VERSION"> + <attr name="Name" type="string" val="SQLITE_VERSION"/> + <attr name="Value" type="string" val="3210000"/> +</obj> + +<obj class="Variable" id="TBB_HOME"> + <attr name="Name" type="string" val="TBB_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/tbb/2019_U1"/> +</obj> + +<obj class="Variable" id="TBB_VERSION"> + <attr name="Name" type="string" val="TBB_VERSION"/> + <attr name="Value" type="string" val="2019_U1"/> +</obj> + +<obj class="Variable" id="TBED_CORAL_SERVER_HOST"> + <attr name="Description" type="string" val="Name of the host where CoralServer runs"/> + <attr name="Name" type="string" val="TBED_CORAL_SERVER_HOST"/> + <attr name="Value" type="string" val="vm-tbed-onl-01.cern.ch"/> +</obj> + +<obj class="Variable" id="TDAQDB4Expert"> + <attr name="Description" type="string" val="TDAQ_DB variable for expert system."/> + <attr name="Name" type="string" val="TDAQ_DB"/> + <attr name="Value" type="string" val="rdbconfig:RDB_RW"/> +</obj> + +<obj class="Variable" id="TDAQ_AM_AUTHORIZATION"> + <attr name="Description" type="string" val="Controls behavior of the AM service. Allowed values "on/off". "/> + <attr name="Name" type="string" val="TDAQ_AM_AUTHORIZATION"/> + <attr name="Value" type="string" val="on"/> +</obj> + +<obj class="Variable" id="TDAQ_AM_SERVER_HOST"> + <attr name="Description" type="string" val="Defines the host on which the AM server is running."/> + <attr name="Name" type="string" val="TDAQ_AM_SERVER_HOST"/> + <attr name="Value" type="string" val="lnxatd80.cern.ch"/> +</obj> + +<obj class="Variable" id="TDAQ_AM_SERVER_PORT"> + <attr name="Description" type="string" val="Defines the port on which the AM server is listening."/> + <attr name="Name" type="string" val="TDAQ_AM_SERVER_PORT"/> + <attr name="Value" type="string" val="20000"/> +</obj> + +<obj class="Variable" id="TDAQ_BACKUP_PATH"> + <attr name="Description" type="string" val="Path where server backup files are kept"/> + <attr name="Name" type="string" val="TDAQ_BACKUP_PATH"/> + <attr name="Value" type="string" val="${TDAQ_LOGS_PATH}"/> +</obj> + +<obj class="Variable" id="TDAQ_CES_DIR"> + <attr name="Description" type="string" val="Defines the directory used by CES to look for configuration files"/> + <attr name="Name" type="string" val="TDAQ_CES_DIR"/> + <attr name="Value" type="string" val="${TDAQ_INST_PATH}/share/data/CES"/> +</obj> + +<obj class="Variable" id="TDAQ_DQM_ALGO_INST_PATH"> + <attr name="Description" type="string" val="Installation path for the AttlasTrigger project of the Oflline release"/> + <attr name="Name" type="string" val="ATLAS_TRIGGER_INST_PATH"/> + <attr name="Value" type="string" val="/afs/cern.ch/atlas/software/builds/nightlies/dev/AtlasTrigger"/> +</obj> + +<obj class="Variable" id="TDAQ_DQM_ALGO_PATCH_INST_PATH"> + <attr name="Description" type="string" val="Installation path for the patched version of the Offline release"/> + <attr name="Name" type="string" val="OFFLINE_PATCH_INST_PATH"/> + <attr name="Value" type="string" val="/afs/cern.ch/atlas/software/builds/AtlasTier0"/> +</obj> + +<obj class="Variable" id="TDAQ_DQM_ALGO_PATCH_VERSION"> + <attr name="Description" type="string" val="Patched Offline release version"/> + <attr name="Name" type="string" val="OFFLINE_PATCH_VERSION"/> + <attr name="Value" type="string" val="15.0.0.3"/> +</obj> + +<obj class="Variable" id="TDAQ_DQM_ALGO_VERSION"> + <attr name="Description" type="string" val="Offline release version to get DQM algorithms"/> + <attr name="Name" type="string" val="OFFLINE_VERSION"/> + <attr name="Value" type="string" val="latest_copied_release"/> +</obj> + +<obj class="Variable" id="TDAQ_ERS_TIMESTAMP_PRECISION"> + <attr name="Name" type="string" val="TDAQ_ERS_TIMESTAMP_PRECISION"/> + <attr name="Value" type="string" val="MICRO"/> +</obj> + +<obj class="Variable" id="TDAQ_ERS_VERBOSITY"> + <attr name="Value" type="string" val="3"/> +</obj> + +<obj class="Variable" id="TDAQ_ERS_VERBOSITY_LEVEL"> + <attr name="Name" type="string" val="TDAQ_ERS_VERBOSITY_LEVEL"/> + <attr name="Value" type="string" val="3"/> +</obj> + +<obj class="Variable" id="TDAQ_JAVA_HOME"> + <attr name="Name" type="string" val="TDAQ_JAVA_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/java/8u91"/> + <rel name="TagValues"> + <ref class="TagMapping" id="x86_64-slc6-gcc8-opt-for-TDAQ_JAVA_HOME"/> + <ref class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-TDAQ_JAVA_HOME"/> + <ref class="TagMapping" id="x86_64-centos7-gcc8-opt-for-TDAQ_JAVA_HOME"/> + <ref class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-TDAQ_JAVA_HOME"/> + </rel> +</obj> + +<obj class="Variable" id="TDAQ_LOGS_ARCHIVE_PATH"> + <attr name="Description" type="string" val="Path where the archives of the logs are kept"/> + <attr name="Name" type="string" val="TDAQ_LOGS_ARCHIVE_PATH"/> + <attr name="Value" type="string" val="${TDAQ_LOGS_ROOT}/archive"/> +</obj> + +<obj class="Variable" id="TDAQ_OPMON_OPTIONS"> + <attr name="Description" type="string" val="Options to be passed to command line of the opmon application."/> + <attr name="Name" type="string" val="TDAQ_OPMON_OPTIONS"/> + <attr name="Value" type="string" val="-w -u 1 -i 5000"/> +</obj> + +<obj class="Variable" id="TDAQ_PMG_MANIFEST_DIR"> + <attr name="Description" type="string" val="Where PMG server creates manifest files and fifos. Ideally should be unique per user, release and IPC domain."/> + <attr name="Name" type="string" val="TDAQ_PMG_MANIFEST_AND_FIFOS_DIR"/> + <attr name="Value" type="string" val="/tmp/ProcessManager/nightly"/> +</obj> + +<obj class="Variable" id="TDAQ_PYTHON_PATH"> + <attr name="Name" type="string" val="TDAQ_PYTHON_PATH"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/Python/2.7.15"/> + <rel name="TagValues"> + <ref class="TagMapping" id="x86_64-slc6-gcc8-opt-for-TDAQ_PYTHON_PATH"/> + <ref class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-TDAQ_PYTHON_PATH"/> + <ref class="TagMapping" id="x86_64-centos7-gcc8-opt-for-TDAQ_PYTHON_PATH"/> + <ref class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-TDAQ_PYTHON_PATH"/> + </rel> +</obj> + +<obj class="Variable" id="TDAQ_RDB_THREADING"> + <attr name="Description" type="string" val="sets the number of CORBA threads for incoming requests for the server"/> + <attr name="Name" type="string" val="TDAQ_RDB_THREADING"/> + <attr name="Value" type="string" val="-ORBmaxServerThreadPoolSize 16"/> +</obj> + +<obj class="Variable" id="TDAQ_RESULTS_FILE_NAME"> + <attr name="Description" type="string" val="File name of the partition independent timing test results file name"/> + <attr name="Name" type="string" val="TDAQ_RESULTS_FILE_NAME"/> + <attr name="Value" type="string" val="timing_test_result_list.out"/> +</obj> + +<obj class="Variable" id="TDAQ_RESULTS_LOGS_PATH"> + <attr name="Description" type="string" val="Path where the partition independent timing test results log file is stored"/> + <attr name="Name" type="string" val="TDAQ_RESULTS_LOGS_PATH"/> + <attr name="Value" type="string" val="${TDAQ_LOGS_ROOT}/results"/> +</obj> + +<obj class="Variable" id="TDAQ_RLOGIN_OPTS"> + <attr name="Description" type="string" val="Options passed to remote login command (e.g. ssh), used in starting of PMG agents and in test_computer. May be installation-specific."/> + <attr name="Name" type="string" val="TDAQ_RLOGIN_OPTS"/> + <attr name="Value" type="string" val="-nfx"/> +</obj> + +<obj class="Variable" id="TDAQ_RM_CONFIG"> + <attr name="Description" type="string" val="Configuration database for the Resource Manager server"/> + <attr name="Name" type="string" val="TDAQ_RM_CONFIG"/> + <attr name="Value" type="string" val="oksconfig:daq/sw/rm-config.data.xml"/> +</obj> + +<obj class="Variable" id="TDAQ_ROOT_CTRL_EXT"> + <attr name="Description" type="string" val="sets extra clips extensions for Root Controller (e.g. run number service)"/> + <attr name="Name" type="string" val="TDAQ_CLIPSSERVER_EXTENSIONS"/> + <attr name="Value" type="string" val="RN"/> +</obj> + +<obj class="Variable" id="TDAQ_RUNNUMBER_SRV"> + <attr name="Description" type="string" val="Sets connection path to run number DB"/> + <attr name="Name" type="string" val="TDAQ_RUN_NUMBER_CONNECT"/> + <attr name="Value" type="string" val="nightly_check:atlas_oks_archive:oracle://INTR/tdaq_dev_backup_w"/> +</obj> + +<obj class="Variable" id="TDAQ_VERSION"> + <attr name="Name" type="string" val="TDAQ_VERSION"/> + <attr name="Value" type="string" val="tdaq-99-00-00"/> +</obj> + +<obj class="Variable" id="TEMPLATE_RDB_IPC_TIMEOUT"> + <attr name="Description" type="string" val="IPC communication timeout for segment RDB server"/> + <attr name="Name" type="string" val="TDAQ_IPC_TIMEOUT"/> + <attr name="Value" type="string" val="12000"/> +</obj> + +<obj class="Variable" id="TNS_ADMIN"> + <attr name="Description" type="string" val="Needed to access oracle database from COOL/CORAL plugins. Should be set according to the local Oracle installation."/> + <attr name="Name" type="string" val="TNS_ADMIN"/> + <attr name="Value" type="string" val="/eos/project/o/oracle/public/admin"/> +</obj> + +<obj class="Variable" id="WARNING_STREAM_NOMTS"> + <attr name="Description" type="string" val="Destination and filter for WARNING messages"/> + <attr name="Name" type="string" val="TDAQ_ERS_WARNING"/> + <attr name="Value" type="string" val="lstderr"/> +</obj> + +<obj class="Variable" id="XERCESC_HOME"> + <attr name="Name" type="string" val="XERCESC_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/XercesC/3.1.3"/> +</obj> + +<obj class="Variable" id="XERCESC_VERSION"> + <attr name="Name" type="string" val="XERCESC_VERSION"/> + <attr name="Value" type="string" val="3.1.3"/> +</obj> + +<obj class="Variable" id="XROOTD_HOME"> + <attr name="Name" type="string" val="XROOTD_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/xrootd/4.8.4"/> +</obj> + +<obj class="Variable" id="XROOTD_VERSION"> + <attr name="Name" type="string" val="XROOTD_VERSION"/> + <attr name="Value" type="string" val="4.8.4"/> +</obj> + +<obj class="Variable" id="ZEROMQ_HOME"> + <attr name="Name" type="string" val="ZEROMQ_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/zeromq/4.2.5"/> +</obj> + +<obj class="Variable" id="ZEROMQ_VERSION"> + <attr name="Name" type="string" val="ZEROMQ_VERSION"/> + <attr name="Value" type="string" val="4.2.5"/> +</obj> + +<obj class="Variable" id="ZLIB_HOME"> + <attr name="Name" type="string" val="ZLIB_HOME"/> + <attr name="Value" type="string" val="${LCG_INST_PATH}/LCG_95/zlib/1.2.11"/> +</obj> + +<obj class="Variable" id="ZLIB_VERSION"> + <attr name="Name" type="string" val="ZLIB_VERSION"/> + <attr name="Value" type="string" val="1.2.11"/> +</obj> + +<obj class="VariableSet" id="AM_Environment"> + <attr name="Description" type="string" val="Set of environment variables to configure the use of the AM."/> + <rel name="Contains"> + <ref class="Variable" id="TDAQ_AM_AUTHORIZATION"/> + <ref class="Variable" id="TDAQ_AM_SERVER_HOST"/> + <ref class="Variable" id="TDAQ_AM_SERVER_PORT"/> + </rel> +</obj> + +<obj class="VariableSet" id="CommonEnvironment"> + <attr name="Description" type="string" val="Environment that to be passed to all applications in a partition. It can be alternated by a user for concrete partition."/> + <rel name="Contains"> + <ref class="Variable" id="DEF_ERS_DEBUG_LEVEL"/> + <ref class="Variable" id="DEF_DEBUG_STREAM"/> + <ref class="Variable" id="DEF_INFO_STREAM"/> + <ref class="Variable" id="DEF_WARNING_STREAM"/> + <ref class="Variable" id="DEF_ERROR_STREAM"/> + <ref class="Variable" id="DEF_FATAL_STREAM"/> + <ref class="Variable" id="DEF_ERS_SIGNAL_HANDLERS"/> + <ref class="Variable" id="TNS_ADMIN"/> + <ref class="Variable" id="MTS_ERS_STREAM"/> + </rel> +</obj> + +<obj class="VariableSet" id="CommonParameters"> + <attr name="Description" type="string" val="Parameters which shall be defined for any partition. It can be copied and alternated by a user for concrete partition."/> + <rel name="Contains"> + <ref class="Variable" id="TDAQ_LOGS_ARCHIVE_PATH"/> + <ref class="Variable" id="TDAQ_RESULTS_FILE_NAME"/> + <ref class="Variable" id="TDAQ_RESULTS_LOGS_PATH"/> + <ref class="Variable" id="TDAQ_BACKUP_PATH"/> + <ref class="Variable" id="TDAQ_DQM_ALGO_INST_PATH"/> + <ref class="Variable" id="TDAQ_DQM_ALGO_PATCH_INST_PATH"/> + <ref class="Variable" id="TDAQ_DQM_ALGO_VERSION"/> + <ref class="Variable" id="TDAQ_DQM_ALGO_PATCH_VERSION"/> + <ref class="Variable" id="TBED_CORAL_SERVER_HOST"/> + <ref class="Variable" id="TDAQ_RDB_THREADING"/> + <ref class="Variable" id="TDAQ_VERSION"/> + </rel> +</obj> + +<obj class="VariableSet" id="External-environment"> + <attr name="Description" type="string" val="a set of environment that to be passed to Applicaitons which need access to external packages like COOL, ROOT, CORAL"/> + <rel name="Contains"> + <ref class="Variable" id="ROOTSYS"/> + </rel> +</obj> + +<obj class="VariableSet" id="External-parameters"> + <attr name="Description" type="string" val="these parameters are used to define values for other objects (e.g. Environment), and should be associated with Partition or Segment objects"/> + <rel name="Contains"> + <ref class="Variable" id="BOOST_HOME"/> + <ref class="Variable" id="BOOST_VERSION"/> + <ref class="Variable" id="COOL_HOME"/> + <ref class="Variable" id="CORAL_HOME"/> + <ref class="Variable" id="MYSQL_HOME"/> + <ref class="Variable" id="ORACLE_HOME"/> + <ref class="Variable" id="ROOT_HOME"/> + <ref class="Variable" id="XERCESC_HOME"/> + <ref class="Variable" id="COOL_VERSION"/> + <ref class="Variable" id="CORAL_VERSION"/> + <ref class="Variable" id="MYSQL_VERSION"/> + <ref class="Variable" id="ORACLE_VERSION"/> + <ref class="Variable" id="XERCESC_VERSION"/> + <ref class="Variable" id="ROOT_VERSION"/> + <ref class="Variable" id="BOOST_VERSION"/> + <ref class="Variable" id="BOOST_HOME"/> + <ref class="Variable" id="PYTHON_VERSION"/> + <ref class="Variable" id="PYTHON_HOME"/> + <ref class="Variable" id="LCG_INST_PATH"/> + <ref class="Variable" id="SQLITE_HOME"/> + <ref class="Variable" id="SQLITE_VERSION"/> + <ref class="Variable" id="TBB_HOME"/> + <ref class="Variable" id="TBB_VERSION"/> + <ref class="Variable" id="GCC_HOME"/> + <ref class="Variable" id="PROTOBUF_HOME"/> + <ref class="Variable" id="PROTOBUF_VERSION"/> + <ref class="Variable" id="ZLIB_HOME"/> + <ref class="Variable" id="ZLIB_VERSION"/> + <ref class="Variable" id="ZEROMQ_HOME"/> + <ref class="Variable" id="ZEROMQ_VERSION"/> + </rel> +</obj> + +<obj class="VariableSet" id="SetupSegmentParameters"> + <attr name="Description" type="string" val="Variables used to parametrize Applicaitons in Setup segment"/> + <rel name="Contains"> + <ref class="Variable" id="RP_IS_NAME"/> + <ref class="Variable" id="RC_IS_NAME"/> + <ref class="Variable" id="PMG_IS_NAME"/> + <ref class="Variable" id="MON_IS_NAME"/> + <ref class="Variable" id="DF_IS_NAME"/> + <ref class="Variable" id="AM_DB_HOST"/> + <ref class="Variable" id="OKS2CORAL_CONNECT"/> + <ref class="Variable" id="OKS2CORAL_WORKING_SCHEMA"/> + <ref class="Variable" id="OKS2CORAL_PARAMS"/> + <ref class="Variable" id="TDAQ_OPMON_OPTIONS"/> + <ref class="Variable" id="HIST_IS_NAME"/> + <ref class="Variable" id="DQM_IS_NAME"/> + <ref class="Variable" id="OKS2CORAL_TMP_DIR"/> + <ref class="Variable" id="LOGGER_CONNECT"/> + <ref class="Variable" id="SETUP_IS_SERVER_NAME"/> + <ref class="Variable" id="PBEAST_REPOSITORY"/> + <ref class="Variable" id="PBEAST_MERGED_REPOSITORY"/> + </rel> +</obj> + +</oks-data> diff --git a/partition_is_tests/cs-part_hlt_jholm.schema.xml b/copy_me_to_public/partition_is_tests/cs-part_hlt_jholm.schema.xml similarity index 99% rename from partition_is_tests/cs-part_hlt_jholm.schema.xml rename to copy_me_to_public/partition_is_tests/cs-part_hlt_jholm.schema.xml index 448de648a1e0082c80dfdf1ef16e934a88129bd9..3e1da21c590a054924f52d2ab0e2322b2f4eade4 100644 --- a/partition_is_tests/cs-part_hlt_jholm.schema.xml +++ b/copy_me_to_public/partition_is_tests/cs-part_hlt_jholm.schema.xml @@ -78,7 +78,7 @@ <oks-schema> -<info name="" type="" num-of-items="277" oks-format="schema" oks-version="oks-06-10-14 built "Apr 2 2019"" created-by="jholm" created-on="pc-tbed-pub-32.cern.ch" creation-time="20190402T101947" last-modified-by="jholm" last-modified-on="pc-tbed-pub-32.cern.ch" last-modification-time="20190402T101947"/> +<info name="" type="" num-of-items="278" oks-format="schema" oks-version="oks-07-00-02 built "Apr 16 2019"" created-by="jholm" created-on="pc-tbed-pub-27.cern.ch" creation-time="20190416T091414" last-modified-by="jholm" last-modified-on="pc-tbed-pub-27.cern.ch" last-modification-time="20190416T091414"/> <class name="Application" description="This abstract class is used to describe base propertios of a simple process.
For more information read https://twiki.cern.ch/twiki/bin/viewauth/Atlas/DaqHltDal#3_3_Application_Classes" is-abstract="yes"> <superclass name="BaseApplication"/> @@ -157,6 +157,10 @@ <relationship name="Source" description="Points on source object connected by this cable." class-type="HW_ConnectableObject" low-cc="one" high-cc="one" is-composite="no" is-exclusive="no" is-dependent="no"/> </class> + <class name="CastorScriptState" description="CastorScript instance state variables"> + <attribute name="uptime_seconds" description="uptime in seconds, since the CastorScript instance has started." type="double"/> + </class> + <class name="CircBuffer" description="Description of a shared ring buffer. Used by Muon Calibration SW (siom pkg) and HLT"> <attribute name="CircName" description="Name of the buffer" type="string" init-value="/tmp/_Circ_"/> <attribute name="CircSize" description="Buffer size in bytes. If 0, connect in slave mode." type="u32"/> @@ -1281,6 +1285,9 @@ <class name="ResourceBase"> <superclass name="Component"/> + <method name="get_resources" description="Returns list of resources including defined by the nested sets. If partition parameter is provided (i.e. it is not <b>null</b>), only enabled resources are added."> + <method-implementation language="c++" prototype="void get_resources(::Configuration& db, std::list<const Resource *>& out, const Partition * p = 0) const" body=""/> + </method> </class> <class name="ResourceSet"> @@ -1967,10 +1974,11 @@ <relationship name="Actions" description="List of actions to be performed upon specific failure of a certain test." class-type="TestFailureAction" low-cc="zero" high-cc="many" is-composite="no" is-exclusive="no" is-dependent="no"/> </class> - <class name="TestFailureAction"> + <class name="TestFailureAction" description="A recovery action which follows an Failure, to be performed automatically by DVS (test action) or CHIP (reboot, restart) action-"> <attribute name="action" description="Action (e.g. a recovery or an additional test) to be performed by a client upon certain test failure." type="enum" range="reboot,restart,test,execute,ignore" init-value="execute" is-not-null="yes"/> <attribute name="parameters" description="A formatted string of parameters for the action. E.g. "computer=#this.RunsOn;scope=diagnostics". Parameters are to be parsed by the client." type="string"/> <attribute name="timeout" description="Timeout in seconds for the action to be executed and further actions like test to be performed. " type="u32" init-value="0"/> + <attribute name="description" description="Just a description of an action, to be displayed to a user." type="string"/> <relationship name="Runs" description="List of Executables which are to be launched for an FailureAction - makes sense for 'exec' type of action only." class-type="Executable" low-cc="zero" high-cc="many" is-composite="no" is-exclusive="no" is-dependent="no"/> </class> diff --git a/full_castorscript_schema.xml b/copy_me_to_public/partition_is_tests/is.xml similarity index 95% rename from full_castorscript_schema.xml rename to copy_me_to_public/partition_is_tests/is.xml index aba8fe9a49519e760a1ed07bf528fb3d0a055f28..f70ef1a6dce34a3bc89296d01e693e86470b4ae5 100644 --- a/full_castorscript_schema.xml +++ b/copy_me_to_public/partition_is_tests/is.xml @@ -78,13 +78,18 @@ <oks-schema> -<info name="" type="" num-of-items="26" oks-format="schema" oks-version="oks-06-10-14 built "Apr 1 2019"" created-by="kolos" created-on="pcatd88" creation-time="20020408T170614" last-modified-by="jholm" last-modified-on="pc-tbed-pub-28.cern.ch" last-modification-time="20190401T134549"/> +<info name="" type="" num-of-items="26" oks-format="schema" oks-version="oks-07-00-01 built "Apr 15 2019"" created-by="kolos" created-on="pcatd88" creation-time="20020408T170614" last-modified-by="jholm" last-modified-on="pc-tbed-pub-32.cern.ch" last-modification-time="20190415T131626"/> <class name="Boolean" description="Simple generic class containing one attribute of Boolean type"> <superclass name="Info"/> <attribute name="value" description="object value" type="bool"/> </class> + <class name="CastorScriptState" description="Describes relevant state variables for the CastorScript Instances"> + <superclass name="Info"/> + <attribute name="uptime_seconds" description="Seconds of uptime since launch." type="double" init-value="0.0"/> + </class> + <class name="Double" description="Simple generic class containing one attribute of double precision type"> <superclass name="Info"/> <attribute name="value" description="object value" type="double"/> @@ -203,8 +208,4 @@ <attribute name="value" description="object value" type="u8" is-multi-value="yes"/> </class> - <class name="CastorScriptState" description="Class for describing the state of a CastorScript instance"> - <superclass name="Info"/> - <attribute name="uptime" type="double" description="Uptime in seconds since script started."/> - </class> </oks-schema> diff --git a/partition_is_tests/part_hlt_jholm.data.xml b/copy_me_to_public/partition_is_tests/part_hlt_jholm.data.xml similarity index 100% rename from partition_is_tests/part_hlt_jholm.data.xml rename to copy_me_to_public/partition_is_tests/part_hlt_jholm.data.xml diff --git a/partition_is_tests/cs-part_hlt_jholm.data.xml b/partition_is_tests/cs-part_hlt_jholm.data.xml deleted file mode 100644 index dc560dfef3006a3d8810529fe8ce123a90cce6e2..0000000000000000000000000000000000000000 --- a/partition_is_tests/cs-part_hlt_jholm.data.xml +++ /dev/null @@ -1,14359 +0,0 @@ -<?xml version="1.0" encoding="ASCII"?> - -<!-- oks-data version 2.0 --> - - -<!DOCTYPE oks-data [ - <!ELEMENT oks-data (info, (include)?, (comments)?, (obj)+)> - <!ELEMENT info EMPTY> - <!ATTLIST info - name CDATA #REQUIRED - type CDATA #REQUIRED - num-of-items CDATA #REQUIRED - oks-format CDATA #FIXED "extended" - oks-version CDATA #REQUIRED - created-by CDATA #REQUIRED - created-on CDATA #REQUIRED - creation-time CDATA #REQUIRED - last-modified-by CDATA #REQUIRED - last-modified-on CDATA #REQUIRED - last-modification-time CDATA #REQUIRED - > - <!ELEMENT include (file)+> - <!ELEMENT file EMPTY> - <!ATTLIST file - path CDATA #REQUIRED - > - <!ELEMENT comments (comment)+> - <!ELEMENT comment EMPTY> - <!ATTLIST comment - creation-time CDATA #REQUIRED - created-by CDATA #REQUIRED - created-on CDATA #REQUIRED - author CDATA #REQUIRED - text CDATA #REQUIRED - > - <!ELEMENT obj (attr | rel)*> - <!ATTLIST obj - class CDATA #REQUIRED - id CDATA #REQUIRED - > - <!ELEMENT attr (#PCDATA)*> - <!ATTLIST attr - name CDATA #REQUIRED - type (bool|s8|u8|s16|u16|s32|u32|s64|u64|float|double|date|time|string|uid|enum|class|-) "-" - num CDATA "-1" - > - <!ELEMENT rel (#PCDATA)*> - <!ATTLIST rel - name CDATA #REQUIRED - num CDATA "-1" - > -]> - -<oks-data> - -<info name="" type="" num-of-items="1056" oks-format="extended" oks-version="oks-06-10-14 built "Apr 2 2019"" created-by="jholm" created-on="pc-tbed-pub-32.cern.ch" creation-time="20190402T101947" last-modified-by="jholm" last-modified-on="pc-tbed-pub-32.cern.ch" last-modification-time="20190402T101947"/> - -<include> - <file path="cs-part_hlt_jholm.schema.xml"/> -</include> - - -<obj class="Binary" id="HLTMPPU_main"> - <attr name="BinaryName" type="string">"HLTMPPU_main"</attr> - <attr name="Description" type="string">"multi-processing HLTPU Processing Task based on ATHENA"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "ORBscanGranularity" - </rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="HLTRC_main"> - <attr name="BinaryName" type="string">"HLTRC_main"</attr> - <attr name="Description" type="string">"HLT RC helper for HLTMPPU"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="MonInfoGatherer"> - <attr name="BinaryName" type="string">"MonInfoGatherer"</attr> - <attr name="Description" type="string">"Histogram summing application. Receives histograms from individual nodes and combines them."</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="ROSTester"> - <attr name="BinaryName" type="string">"ROSTester"</attr> - <attr name="Description" type="string">"test Application that sends requests and clears to the ROS,.emulating DCM and hltsv"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="ROx"> - <attr name="BinaryName" type="string">"ROx"</attr> - <attr name="Description" type="string">"Software ROD"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="ReadoutApplication"> - <attr name="BinaryName" type="string">"ReadoutApplication"</attr> - <attr name="Description" type="string">"Application that instantiates IOManager for ROS/RCD."</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="1"> - "RM_HW_Resource" "ROS" - </rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="RobinTestSuite"> - <attr name="BinaryName" type="string">"RobinTestSuite"</attr> - <attr name="Description" type="string">"Test Suite package for testing Robin cards. For experts only"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="SFOng_main"> - <attr name="BinaryName" type="string">"SFOng_main"</attr> - <attr name="Description" type="string">"Sub Farm Output: the next generation"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="circ_generator"> - <attr name="BinaryName" type="string">"circ_generator"</attr> - <attr name="Description" type="string">"Event generator to fill a circular buffer"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="coca_server"> - <attr name="BinaryName" type="string">"coca_server"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="config_dump"> - <attr name="BinaryName" type="string">"config_dump"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="coralServer"> - <attr name="BinaryName" type="string">"coralServer"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "CoralServerRepo"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="2"> - "Variable" "CS_CORAL_AUTH_PATH" - "Variable" "CS_CORAL_DBLOOKUP_PATH" - </rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="coralServerProxy"> - <attr name="BinaryName" type="string">"coralServerProxy"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="1"> - "RM_HW_Resource" "DBPROXY" - </rel> - <rel name="BelongsTo">"SW_Repository" "CoralServerRepo"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="dal_create_db_connection_files"> - <attr name="BinaryName" type="string">"dal_create_db_connection_files"</attr> - <attr name="Description" type="string">"create dblookup and authentication xml files out of information in OKS."</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="dcm_main"> - <attr name="BinaryName" type="string">"dcm_main"</attr> - <attr name="Description" type="string">"Data Collection Manager"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="ddc_ct_dim"> - <attr name="BinaryName" type="string">"ddc_ct_dim"</attr> - <attr name="Description" type="string">"Application transferring DAQ commands to DCS via DIM PVSS manager"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="ddc_dt_dim"> - <attr name="BinaryName" type="string">"ddc_dt_dim"</attr> - <attr name="Description" type="string">"Application transferiing data DAQ <=> DCS via DIM PVSS manager"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="ddc_dt_dim_init"> - <attr name="BinaryName" type="string">"ddc_dt_dim_init"</attr> - <attr name="Description" type="string">"Application transferiing data DAQ <=> DCS via DIM PVSS manager, handling DAQ data in IS servers of initial partition"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="ddc_mt_dim"> - <attr name="BinaryName" type="string">"ddc_mt_dim"</attr> - <attr name="Description" type="string">"Application transferiing DCS=>DAQ messages via DIM PVSS manager"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="dolar_slink_src"> - <attr name="BinaryName" type="string">"dolar_slink_src"</attr> - <attr name="Description" type="string">"Generates SLINK fragments using a Dolar"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="dolarscope"> - <attr name="BinaryName" type="string">"dolarscope"</attr> - <attr name="Description" type="string">"Binary for dolarscope"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="dozolar_fmctest"> - <attr name="BinaryName" type="string">"dozolar_fmctest"</attr> - <attr name="Description" type="string">"Tests FMC connectivity on a Dozolar"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="dozolar_setup"> - <attr name="BinaryName" type="string">"dozolar_setup"</attr> - <attr name="Description" type="string">"Initializes a Dozolar"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="dqm_archiver"> - <attr name="BinaryName" type="string">"dqm_archiver"</attr> - <attr name="Description" type="string">"DQM results archiving application"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="dqmf_agent"> - <attr name="BinaryName" type="string">"dqmf_agent"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="dqmf_rm"> - <attr name="BinaryName" type="string">"dqmf_rm"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="eff_csv_splunk"> - <attr name="BinaryName" type="string">"eff_csv_splunk"</attr> - <attr name="Description" type="string">"Application to evaluate lumi block efficiency"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "CORAL_AUTH_PATH" - </rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="eff_daq_efficiency"> - <attr name="BinaryName" type="string">"eff_daq_efficiency"</attr> - <attr name="Description" type="string">"Application to evaluate lumi block efficiency"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "CORAL_AUTH_PATH" - </rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="eff_daq_splunk"> - <attr name="BinaryName" type="string">"eff_daq_splunk"</attr> - <attr name="Description" type="string">"Application to evaluate lumi block efficiency"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "CORAL_AUTH_PATH" - </rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="eff_make_combined_graphs"> - <attr name="BinaryName" type="string">"eff_make_combined_graphs"</attr> - <attr name="Description" type="string">"Application to produce a root file from efficiency data files"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="eff_make_csv_file"> - <attr name="BinaryName" type="string">"eff_make_csv_file"</attr> - <attr name="Description" type="string">"Application to produce a csv file with run efficiency data"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "CORAL_AUTH_PATH" - </rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="eff_run_efficiency"> - <attr name="BinaryName" type="string">"eff_run_efficiency"</attr> - <attr name="Description" type="string">"Application to evaluate run efficency"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "CORAL_AUTH_PATH" - </rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="emon_conductor"> - <attr name="BinaryName" type="string">"emon_conductor"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">"-s -p env(TDAQ_PARTITION)"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="emon_pull_sampler"> - <attr name="BinaryName" type="string">"emon_pull_sampler"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">"-p env(TDAQ_PARTITION)"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="emon_push_sampler"> - <attr name="BinaryName" type="string">"emon_push_sampler"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">"-p env(TDAQ_PARTITION)"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="emon_task"> - <attr name="BinaryName" type="string">"emon_task"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">"-p env(TDAQ_PARTITION)"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="eth_dst"> - <attr name="BinaryName" type="string">"eth_dst"</attr> - <attr name="Description" type="string">"Test for an eth connection, destination side"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="eth_src"> - <attr name="BinaryName" type="string">"eth_src"</attr> - <attr name="Description" type="string">"Test for an eth connection, source side"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="gnam"> - <attr name="BinaryName" type="string">"gnam"</attr> - <attr name="Description" type="string">"A Monitoring Application that is configurable through user dynamic libraries"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="hltpuEmu"> - <attr name="BinaryName" type="string">"hltpuEmu"</attr> - <attr name="Description" type="string">"It uses the dfinterface_dcm and emulates the hltpu behaviour"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="hltsv_main"> - <attr name="BinaryName" type="string">"hltsv_main"</attr> - <attr name="Description" type="string">"HLT Supervisor Application"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="ipc_proxy"> - <attr name="BinaryName" type="string">"ipc_proxy"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="ipc_server"> - <attr name="BinaryName" type="string">"ipc_server"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="is_ls"> - <attr name="BinaryName" type="string">"is_ls"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">"-p env(TDAQ_PARTITION)"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="is_rm"> - <attr name="BinaryName" type="string">"is_rm"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">"-p env(TDAQ_PARTITION)"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="is_server"> - <attr name="BinaryName" type="string">"is_server"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">"-s -p env(TDAQ_PARTITION) -n env(TDAQ_APPLICATION_NAME)"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="littlejohn"> - <attr name="BinaryName" type="string">"littlejohn"</attr> - <attr name="Description" type="string">"A program for users to display the state of a Robin"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="logTest"> - <attr name="BinaryName" type="string">"logTest"</attr> - <attr name="Description" type="string">"Log Service test. Level 1: test access to the database is correct. Level 2: tests the Log Service infrastructure is ok."</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "CORAL_AUTH_PATH" - </rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="lsReceiver"> - <attr name="BinaryName" type="string">"lsReceiver"</attr> - <attr name="Description" type="string">"MRS client to collect log messages and store them on the Log Service databse"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "CORAL_AUTH_PATH" - </rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="mda"> - <attr name="BinaryName" type="string">"mda"</attr> - <attr name="Description" type="string">"Copying histos from OHS to CoCa"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="mda_eor"> - <attr name="BinaryName" type="string">"mda_eor"</attr> - <attr name="Description" type="string">"Copying histos from OHS to CoCa"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="mda_stat_publish"> - <attr name="BinaryName" type="string">"mda_stat_publish"</attr> - <attr name="Description" type="string">"Publishes histograms with MDA/CoCa statistics"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="mts2splunk_receiver"> - <attr name="BinaryName" type="string">"mts2splunk_receiver"</attr> - <attr name="Description" type="string">"MTS 2 Splunk indexer application"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="mts_ers_receiver"> - <attr name="BinaryName" type="string">"mts_ers_receiver"</attr> - <attr name="Description" type="string">"MTS example receiver application"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="mts_ers_sender"> - <attr name="BinaryName" type="string">"mts_ers_sender"</attr> - <attr name="Description" type="string">"MTS example sender application"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="mts_worker"> - <attr name="BinaryName" type="string">"mts_worker"</attr> - <attr name="Description" type="string">"Message Transfer System worker"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="np2lan"> - <attr name="BinaryName" type="string">"np2lan"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="oh_cp"> - <attr name="BinaryName" type="string">"oh_cp"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="oh_graph_provider"> - <attr name="BinaryName" type="string">"oh_graph_provider"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="oh_ls"> - <attr name="BinaryName" type="string">"oh_ls"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="oh_mv"> - <attr name="BinaryName" type="string">"oh_mv"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="oh_raw_provider"> - <attr name="BinaryName" type="string">"oh_raw_provider"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="oh_rm"> - <attr name="BinaryName" type="string">"oh_rm"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="oh_root_provider"> - <attr name="BinaryName" type="string">"oh_root_provider"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="oh_test_provider"> - <attr name="BinaryName" type="string">"oh_test_provider"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="oks2coral"> - <attr name="BinaryName" type="string">"oks2coral"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="olc2hlt-invalidate"> - <attr name="BinaryName" type="string">"olc2hlt-invalidate"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="opmon_analyser"> - <attr name="BinaryName" type="string">"opmon_analyser"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="opmon_monitor"> - <attr name="BinaryName" type="string">"opmon_monitor"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="pbeast_is_receiver"> - <attr name="BinaryName" type="string">"pbeast_is_receiver"</attr> - <attr name="Description" type="string">"P-BEAST IS Receiver Application"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">"-s"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="pbeast_repository_server"> - <attr name="BinaryName" type="string">"pbeast_repository_server"</attr> - <attr name="Description" type="string">"P-BEAST Repository Server and Merger Application"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">"-s"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="pbeast_server"> - <attr name="BinaryName" type="string">"pbeast_server"</attr> - <attr name="Description" type="string">"P-BEAST Server Application"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="pbeast_web_receiver"> - <attr name="BinaryName" type="string">"pbeast_web_receiver"</attr> - <attr name="Description" type="string">"P-BEAST WEB Receiver Application"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">"-s"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="pmg_sleep_process"> - <attr name="BinaryName" type="string">"pmg_sleep_process"</attr> - <attr name="Description" type="string">"dummy test process"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="pmgserver"> - <attr name="BinaryName" type="string">"pmgserver"</attr> - <attr name="Description" type="string">"Process Manager agent"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "TDAQ_PMG_MANIFEST_DIR" - </rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="quest_test"> - <attr name="BinaryName" type="string">"quest_test"</attr> - <attr name="Description" type="string">"Binary for quest_test"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_bootstrap"> - <attr name="BinaryName" type="string">"rc_bootstrap"</attr> - <attr name="Description" type="string">"Application to start the basic infrastructure before launching the RootController"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_controller"> - <attr name="BinaryName" type="string">"rc_controller"</attr> - <attr name="Description" type="string">"A Controller implementing all the default actions"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_ctp_emulator"> - <attr name="BinaryName" type="string">"rc_ctp_emulator"</attr> - <attr name="Description" type="string">"Dispatches the commands received from RC to the CTP to all L2SVs, for emulation"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_dq_flag_writer"> - <attr name="BinaryName" type="string">"rc_dq_flag_writer"</attr> - <attr name="Description" type="string">"Application to archive DQ flag into COOL"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "CORAL_AUTH_PATH" - </rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_example_app"> - <attr name="BinaryName" type="string">"rc_example_app"</attr> - <attr name="Description" type="string">"Example dummy leaf application"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_example_app_rm"> - <attr name="BinaryName" type="string">"rc_example_app_rm"</attr> - <attr name="Description" type="string">"Example leaf application requesting RM resources during state transitions"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_get_apps_start_order"> - <attr name="BinaryName" type="string">"rc_get_apps_start_order"</attr> - <attr name="Description" type="string">"Application unfolding start dependencies for a given segment/transition"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_get_efficiency"> - <attr name="BinaryName" type="string">"rc_get_efficiency"</attr> - <attr name="Description" type="string">"Application to evaluate data taking efficency"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "CORAL_AUTH_PATH" - </rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_get_running_time"> - <attr name="BinaryName" type="string">"rc_get_running_time"</attr> - <attr name="Description" type="string">"Application to read run control information about the running time from COOL"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "CORAL_AUTH_PATH" - </rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_is2cool_archive"> - <attr name="BinaryName" type="string">"rc_is2cool_archive"</attr> - <attr name="Description" type="string">"Application to archive run control information into COOL"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "CORAL_AUTH_PATH" - </rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_pixel_ready_reactor"> - <attr name="BinaryName" type="string">"rc_pixel_ready_reactor"</attr> - <attr name="Description" type="string">"Utility to launch PixelUp if HV ready"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_pyrunner"> - <attr name="BinaryName" type="string">"rc_pyrunner"</attr> - <attr name="Description" type="string">"Application launcher for Controllable's python modules"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_root_controller"> - <attr name="BinaryName" type="string">"rc_root_controller"</attr> - <attr name="Description" type="string">"A Controller implementing the RootController functionalities"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_sender"> - <attr name="BinaryName" type="string">"rc_sender"</attr> - <attr name="Description" type="string">"Application to send commands to run control applications"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_sound_player"> - <attr name="BinaryName" type="string">"rc_sound_player"</attr> - <attr name="Description" type="string">"Plays sounds if some RC ERS issues are sent."</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rc_test_ctrl"> - <attr name="BinaryName" type="string">"rc_test_ctrl"</attr> - <attr name="Description" type="string">"Test to check if a run control application is alive"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rdb_server"> - <attr name="BinaryName" type="string">"rdb_server"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">"-s -p env(TDAQ_PARTITION) -d env(TDAQ_APPLICATION_NAME)"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rdb_writer"> - <attr name="BinaryName" type="string">"rdb_writer"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">"-s -p env(TDAQ_PARTITION) -d env(TDAQ_APPLICATION_NAME)"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="res_info_archiver"> - <attr name="BinaryName" type="string">"res_info_archiver"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="res_info_provider"> - <attr name="BinaryName" type="string">"res_info_provider"</attr> - <attr name="Description" type="string">"Resource Information Publisher in IS and COOL Archiver"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rmgr_free_resource"> - <attr name="BinaryName" type="string">"rmgr_free_resource"</attr> - <attr name="Description" type="string">"RM utility for freeing a resource"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rmgr_request_resources"> - <attr name="BinaryName" type="string">"rmgr_request_resources"</attr> - <attr name="Description" type="string">"RC app ask resources during connect"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="rmgr_server"> - <attr name="BinaryName" type="string">"rmgr_server"</attr> - <attr name="Description" type="string">"Resource Manager"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="robinCheck"> - <attr name="BinaryName" type="string">"robinCheck"</attr> - <attr name="Description" type="string">"Stand alone Robin test program. Includes extanded PCI check"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="robin_irq_catch"> - <attr name="BinaryName" type="string">"robin_irq_catch"</attr> - <attr name="Description" type="string">"A test program to catch Robin-generated interrupts"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="robin_slink_dst"> - <attr name="BinaryName" type="string">"robin_slink_dst"</attr> - <attr name="Description" type="string">"A program to receive events sequentially with a Robin"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="robin_slink_src"> - <attr name="BinaryName" type="string">"robin_slink_src"</attr> - <attr name="Description" type="string">"A program to upload events into a Robin"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="robinscope"> - <attr name="BinaryName" type="string">"robinscope"</attr> - <attr name="Description" type="string">"A general purpose program to display and modify the state of Robins (for experts only)"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="robinstress"> - <attr name="BinaryName" type="string">"robinstress"</attr> - <attr name="Description" type="string">"Utility for testing Robins. For experts only"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="siom_application"> - <attr name="BinaryName" type="string">"siom_application"</attr> - <attr name="Description" type="string">"Simple IOManager application"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="slink_dst"> - <attr name="BinaryName" type="string">"slink_dst"</attr> - <attr name="Description" type="string">"Test for an slink connection, destination side"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="slink_src"> - <attr name="BinaryName" type="string">"slink_src"</attr> - <attr name="Description" type="string">"Test for an slink connection, source side"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="solarscope"> - <attr name="BinaryName" type="string">"solarscope"</attr> - <attr name="Description" type="string">"Binary for solarscope"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="testDCM"> - <attr name="BinaryName" type="string">"testDCM"</attr> - <attr name="Description" type="string">"Tester for hltsv"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="testROS"> - <attr name="BinaryName" type="string">"testROS"</attr> - <attr name="Description" type="string">"Tester for hltsv"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="testTTC2LAN"> - <attr name="BinaryName" type="string">"testTTC2LAN"</attr> - <attr name="Description" type="string">"TTC2LAN Tester for hltsv"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_app_log"> - <attr name="BinaryName" type="string">"test_app_log"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_app_pmg"> - <attr name="BinaryName" type="string">"test_app_pmg"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_computer"> - <attr name="BinaryName" type="string">"test_computer"</attr> - <attr name="Description" type="string">"runs few commands remotely and checks that computer's name and HW Tag corresonds the database description"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_corba_server"> - <attr name="BinaryName" type="string">"test_corba_server"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_drivers"> - <attr name="BinaryName" type="string">"test_drivers"</attr> - <attr name="Description" type="string">"For DVS: Test presence of BPA and suitable drivers"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_dummy"> - <attr name="BinaryName" type="string">"test_dummy"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_host_ip"> - <attr name="BinaryName" type="string">"test_host_ip"</attr> - <attr name="Description" type="string">"resolves computer name and pings it"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_ipc_server"> - <attr name="BinaryName" type="string">"test_ipc_server"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_is_info"> - <attr name="BinaryName" type="string">"test_is_info"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_is_server"> - <attr name="BinaryName" type="string">"test_is_server"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_pmg_agent"> - <attr name="BinaryName" type="string">"test_pmg_agent"</attr> - <attr name="Description" type="string">"test application for agent"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_process_id"> - <attr name="BinaryName" type="string">"test_process_id"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_program_file"> - <attr name="BinaryName" type="string">"test_program_file"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_rdb_server"> - <attr name="BinaryName" type="string">"test_rdb_server"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_rdb_writer"> - <attr name="BinaryName" type="string">"test_rdb_writer"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="test_tcp_port"> - <attr name="BinaryName" type="string">"test_tcp_port"</attr> - <attr name="Description" type="string">"checks that some service is listening on a remoted port"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="trg_dummy_master_trigger"> - <attr name="BinaryName" type="string">"trg_dummy_master_trigger"</attr> - <attr name="Description" type="string">"Dummy implementation of the MasterTrigger interface"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="trpgui"> - <attr name="BinaryName" type="string">"trpgui"</attr> - <attr name="Description" type="string">"Trigger Rate Presenter GUI"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Binary" id="wmi_server"> - <attr name="BinaryName" type="string">"wmi_server"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ExactImplementations" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-dolar-01"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-dolar-02"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-hltsv-00.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5645 @ 2.40GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">12318</attr> - <attr name="CPU" type="u16">2400</attr> - <attr name="NumberOfCores" type="u16">12</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-hltsv-00.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-hltsv-01.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5645 @ 2.40GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">12318</attr> - <attr name="CPU" type="u16">2400</attr> - <attr name="NumberOfCores" type="u16">12</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-hltsv-01.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-hltsv-02.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-1650 v2 @ 3.50GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">16431</attr> - <attr name="CPU" type="u16">3500</attr> - <attr name="NumberOfCores" type="u16">12</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-hltsv-02.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-lfs-05"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-lfs-06"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-lfs-07"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-01"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-02"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-03"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-04"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-05"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-06"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-07"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-08"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-09"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-10"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-11"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-12"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-13.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-net-13.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-14.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-net-14.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-15.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="4"> - "NetworkInterface" "pc-tbed-net-15.cern.ch-eth0" - "NetworkInterface" "pc-tbed-net-15.cern.ch-eth2" - "NetworkInterface" "pc-tbed-net-15.cern.ch-vlan146" - "NetworkInterface" "pc-tbed-net-15.cern.ch-vlan149" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-16.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="4"> - "NetworkInterface" "pc-tbed-net-16.cern.ch-eth0" - "NetworkInterface" "pc-tbed-net-16.cern.ch-eth2" - "NetworkInterface" "pc-tbed-net-16.cern.ch-vlan146" - "NetworkInterface" "pc-tbed-net-16.cern.ch-vlan149" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-17.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="4"> - "NetworkInterface" "pc-tbed-net-17.cern.ch-eth0" - "NetworkInterface" "pc-tbed-net-17.cern.ch-eth2" - "NetworkInterface" "pc-tbed-net-17.cern.ch-vlan146" - "NetworkInterface" "pc-tbed-net-17.cern.ch-vlan149" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-18.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="4"> - "NetworkInterface" "pc-tbed-net-18.cern.ch-eth0" - "NetworkInterface" "pc-tbed-net-18.cern.ch-eth2" - "NetworkInterface" "pc-tbed-net-18.cern.ch-vlan146" - "NetworkInterface" "pc-tbed-net-18.cern.ch-vlan149" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-19.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-net-19.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-20.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-net-20.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-21.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-net-21.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-22"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-23"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-24"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-25"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-26"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-27"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-28"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-29"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-30"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-31"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-32"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-33"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-net-34"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-onl-01.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1222</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-onl-01.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-onl-02.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1271</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-onl-02.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-01"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-02"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-03"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-04"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-05"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-06"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-07"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-08"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-09"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-10"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-11"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-12"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-13"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-14"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-15"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-16"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-17"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-18"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-19"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-20"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-21.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-21.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-22.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-22.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-23.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-23.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-24.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-24.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-25.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-25.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-26.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-26.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-27.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1240</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-27.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-28.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">2958</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-28.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-29.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1243</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-29.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-30.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1219</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-30.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-31.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1200</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-31.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-32.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">2655</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-32.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-33.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1244</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-33.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-34.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1212</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-34.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-35.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1200</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-35.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-pub-36.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-pub-36.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-01.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-02.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-03.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-04.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-05.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-06.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-07.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-08.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-09.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-10.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-11.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-12.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-13.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-14.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-15.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-16.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-17.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-18.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-19.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32761</attr> - <attr name="CPU" type="u16">2101</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-20.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1200</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-21.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1200</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-22.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1200</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-23.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1200</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-24.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1199</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-25.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1200</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-26.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1200</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-27.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1201</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-28.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1199</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-29.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1200</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-30.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1285</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-31.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1200</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-32.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1199</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-33.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1299</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-34.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1200</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-35.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1226</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-36.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1223</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-37.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1200</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-38"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-39"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-40"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-41"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-42"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-43"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-44"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-45"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-46"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-47.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1200</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-48"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-49.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1200</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r3-50.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">32661</attr> - <attr name="CPU" type="u16">1200</attr> - <attr name="NumberOfCores" type="u16">32</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r5-01"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r5-02"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r5-03"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-r5-04"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-ros-01"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-ros-02.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Core(TM)2 Quad CPU Q9650 @ 3.00GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">4052</attr> - <attr name="CPU" type="u16">3000</attr> - <attr name="NumberOfCores" type="u16">4</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-ros-03"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-ros-04"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-ros-05"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-ros-06"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-ros-07"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05001.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05001.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05002.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05002.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05003.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05003.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05004.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05004.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05005.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05005.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05006.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05006.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05007.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05007.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05008.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05008.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05009.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05009.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05010.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05010.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05011.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05011.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05012.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05012.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05013.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05013.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05014.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05014.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05015.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05015.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05016.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05016.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05017.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05017.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05018.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05018.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05019.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05019.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05020.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2533</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05020.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05021.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05021.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05022.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05022.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05023.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05023.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05024.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05024.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05025.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05025.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05026.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05026.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05027.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05027.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05028.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05028.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05029.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05029.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05030.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05030.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05031.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05031.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05032.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05032.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05033.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">65535</attr> - <attr name="CPU" type="u16">3206</attr> - <attr name="NumberOfCores" type="u16">48</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05033.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05034.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">65535</attr> - <attr name="CPU" type="u16">1754</attr> - <attr name="NumberOfCores" type="u16">48</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05034.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05035.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">65535</attr> - <attr name="CPU" type="u16">2517</attr> - <attr name="NumberOfCores" type="u16">48</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05035.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-05036.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">65535</attr> - <attr name="CPU" type="u16">3246</attr> - <attr name="NumberOfCores" type="u16">48</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-05036.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06001.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06001.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06002.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06002.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06003.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06003.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06004.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06004.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06005.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06005.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06006.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06006.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06007.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06007.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06008.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06008.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06009.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06009.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06010.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06010.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06011"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06012.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06012.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06013.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06013.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06014.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06014.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06015.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06015.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06016.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06016.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06017.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06017.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06018.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06018.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06019.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06019.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06020.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06020.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06021.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06021.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06022.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06022.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06023.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06023.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06024.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06024.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06025.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06025.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06026.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06026.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06027.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06027.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06028.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06028.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06029.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06029.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06030.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06030.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06031.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06031.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06032.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24728</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06032.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06033.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">65535</attr> - <attr name="CPU" type="u16">2494</attr> - <attr name="NumberOfCores" type="u16">48</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06033.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06034.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">65535</attr> - <attr name="CPU" type="u16">2494</attr> - <attr name="NumberOfCores" type="u16">48</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06034.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06035.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">65535</attr> - <attr name="CPU" type="u16">2494</attr> - <attr name="NumberOfCores" type="u16">48</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06035.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-06036.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">65535</attr> - <attr name="CPU" type="u16">2494</attr> - <attr name="NumberOfCores" type="u16">48</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-06036.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07001.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07001.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07002.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07002.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07003.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07003.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07004.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07004.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07005.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07005.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07006.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07006.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07007.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07007.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07008.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07008.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07009.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07009.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07010.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07010.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07011.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07011.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07012.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07012.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07013.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07013.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07014.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07014.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07015.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07015.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07016.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07016.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07017.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07017.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07018.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07018.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07019.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07019.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07020.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07020.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07021.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07021.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07022.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07022.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07023.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07023.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07024.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07024.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07025.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07025.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07026.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07026.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07027.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07027.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07028.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07028.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07029.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07029.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07030.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07030.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="pc-tbed-tpu-07031.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"Intel(R) Xeon(R) CPU E5540 @ 2.53GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">24677</attr> - <attr name="CPU" type="u16">2534</attr> - <attr name="NumberOfCores" type="u16">16</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "pc-tbed-tpu-07031.cern.ch-dc1" - </rel> -</obj> - -<obj class="Computer" id="sbc-tbed-110"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="Memory" type="u32">16384</attr> - <attr name="CPU" type="u16">2048</attr> - <attr name="NumberOfCores" type="u16">8</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="sbc-tbed-717.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="Type" type="string">"Intel(R) Core(TM) i7 CPU L 620 @ 2.00GHz"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">3832</attr> - <attr name="CPU" type="u16">2000</attr> - <attr name="NumberOfCores" type="u16">4</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="0"></rel> -</obj> - -<obj class="Computer" id="vm-tbed-onl-01.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"QEMU Virtual CPU version (cpu64-rhel6)"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">2783</attr> - <attr name="CPU" type="u16">2099</attr> - <attr name="NumberOfCores" type="u16">2</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "vm-tbed-onl-01.cern.ch-eth0" - </rel> -</obj> - -<obj class="Computer" id="vm-tbed-onl-02.cern.ch"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="Type" type="string">"QEMU Virtual CPU version (cpu64-rhel6)"</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="Memory" type="u32">2783</attr> - <attr name="CPU" type="u16">2099</attr> - <attr name="NumberOfCores" type="u16">2</attr> - <attr name="RLogin" type="string">"ssh"</attr> - <rel name="Interfaces" num="1"> - "NetworkInterface" "vm-tbed-onl-02.cern.ch-eth0" - </rel> -</obj> - -<obj class="ComputerSet" id="TestsHosts4TBed"> - <rel name="Contains" num="4"> - "Computer" "pc-tbed-r3-49.cern.ch" - "Computer" "pc-tbed-r3-20.cern.ch" - "Computer" "pc-tbed-r3-21.cern.ch" - "Computer" "pc-tbed-r3-22.cern.ch" - </rel> -</obj> - -<obj class="ComputerSet" id="rack-r3-01"> - <rel name="Contains" num="2"> - "ComputerSet" "rack-r3-01-trim" - "Computer" "pc-tbed-r3-50.cern.ch" - </rel> -</obj> - -<obj class="ComputerSet" id="rack-r3-01-trim"> - <rel name="Contains" num="39"> - "Computer" "pc-tbed-r3-01.cern.ch" - "Computer" "pc-tbed-r3-02.cern.ch" - "Computer" "pc-tbed-r3-03.cern.ch" - "Computer" "pc-tbed-r3-04.cern.ch" - "Computer" "pc-tbed-r3-05.cern.ch" - "Computer" "pc-tbed-r3-06.cern.ch" - "Computer" "pc-tbed-r3-07.cern.ch" - "Computer" "pc-tbed-r3-08.cern.ch" - "Computer" "pc-tbed-r3-09.cern.ch" - "Computer" "pc-tbed-r3-10.cern.ch" - "Computer" "pc-tbed-r3-11.cern.ch" - "Computer" "pc-tbed-r3-12.cern.ch" - "Computer" "pc-tbed-r3-13.cern.ch" - "Computer" "pc-tbed-r3-14.cern.ch" - "Computer" "pc-tbed-r3-15.cern.ch" - "Computer" "pc-tbed-r3-16.cern.ch" - "Computer" "pc-tbed-r3-17.cern.ch" - "Computer" "pc-tbed-r3-18.cern.ch" - "Computer" "pc-tbed-r3-19.cern.ch" - "Computer" "pc-tbed-r3-20.cern.ch" - "Computer" "pc-tbed-r3-21.cern.ch" - "Computer" "pc-tbed-r3-22.cern.ch" - "Computer" "pc-tbed-r3-23.cern.ch" - "Computer" "pc-tbed-r3-24.cern.ch" - "Computer" "pc-tbed-r3-25.cern.ch" - "Computer" "pc-tbed-r3-26.cern.ch" - "Computer" "pc-tbed-r3-27.cern.ch" - "Computer" "pc-tbed-r3-28.cern.ch" - "Computer" "pc-tbed-r3-29.cern.ch" - "Computer" "pc-tbed-r3-30.cern.ch" - "Computer" "pc-tbed-r3-31.cern.ch" - "Computer" "pc-tbed-r3-32.cern.ch" - "Computer" "pc-tbed-r3-33.cern.ch" - "Computer" "pc-tbed-r3-34.cern.ch" - "Computer" "pc-tbed-r3-35.cern.ch" - "Computer" "pc-tbed-r3-36.cern.ch" - "Computer" "pc-tbed-r3-37.cern.ch" - "Computer" "pc-tbed-r3-47.cern.ch" - "Computer" "pc-tbed-r3-49.cern.ch" - </rel> -</obj> - -<obj class="ComputerSet" id="tpu-rack-05"> - <rel name="Contains" num="36"> - "Computer" "pc-tbed-tpu-05001.cern.ch" - "Computer" "pc-tbed-tpu-05002.cern.ch" - "Computer" "pc-tbed-tpu-05003.cern.ch" - "Computer" "pc-tbed-tpu-05004.cern.ch" - "Computer" "pc-tbed-tpu-05005.cern.ch" - "Computer" "pc-tbed-tpu-05006.cern.ch" - "Computer" "pc-tbed-tpu-05007.cern.ch" - "Computer" "pc-tbed-tpu-05008.cern.ch" - "Computer" "pc-tbed-tpu-05009.cern.ch" - "Computer" "pc-tbed-tpu-05010.cern.ch" - "Computer" "pc-tbed-tpu-05011.cern.ch" - "Computer" "pc-tbed-tpu-05012.cern.ch" - "Computer" "pc-tbed-tpu-05013.cern.ch" - "Computer" "pc-tbed-tpu-05014.cern.ch" - "Computer" "pc-tbed-tpu-05015.cern.ch" - "Computer" "pc-tbed-tpu-05016.cern.ch" - "Computer" "pc-tbed-tpu-05017.cern.ch" - "Computer" "pc-tbed-tpu-05018.cern.ch" - "Computer" "pc-tbed-tpu-05019.cern.ch" - "Computer" "pc-tbed-tpu-05020.cern.ch" - "Computer" "pc-tbed-tpu-05021.cern.ch" - "Computer" "pc-tbed-tpu-05022.cern.ch" - "Computer" "pc-tbed-tpu-05023.cern.ch" - "Computer" "pc-tbed-tpu-05024.cern.ch" - "Computer" "pc-tbed-tpu-05025.cern.ch" - "Computer" "pc-tbed-tpu-05026.cern.ch" - "Computer" "pc-tbed-tpu-05027.cern.ch" - "Computer" "pc-tbed-tpu-05028.cern.ch" - "Computer" "pc-tbed-tpu-05029.cern.ch" - "Computer" "pc-tbed-tpu-05030.cern.ch" - "Computer" "pc-tbed-tpu-05031.cern.ch" - "Computer" "pc-tbed-tpu-05032.cern.ch" - "Computer" "pc-tbed-tpu-05033.cern.ch" - "Computer" "pc-tbed-tpu-05034.cern.ch" - "Computer" "pc-tbed-tpu-05035.cern.ch" - "Computer" "pc-tbed-tpu-05036.cern.ch" - </rel> -</obj> - -<obj class="ComputerSet" id="tpu-rack-06"> - <rel name="Contains" num="2"> - "ComputerSet" "tpu-rack-06-trim" - "Computer" "pc-tbed-tpu-06031.cern.ch" - </rel> -</obj> - -<obj class="ComputerSet" id="tpu-rack-06-trim"> - <rel name="Contains" num="35"> - "Computer" "pc-tbed-tpu-06001.cern.ch" - "Computer" "pc-tbed-tpu-06002.cern.ch" - "Computer" "pc-tbed-tpu-06003.cern.ch" - "Computer" "pc-tbed-tpu-06004.cern.ch" - "Computer" "pc-tbed-tpu-06005.cern.ch" - "Computer" "pc-tbed-tpu-06006.cern.ch" - "Computer" "pc-tbed-tpu-06007.cern.ch" - "Computer" "pc-tbed-tpu-06008.cern.ch" - "Computer" "pc-tbed-tpu-06009.cern.ch" - "Computer" "pc-tbed-tpu-06010.cern.ch" - "Computer" "pc-tbed-tpu-06012.cern.ch" - "Computer" "pc-tbed-tpu-06013.cern.ch" - "Computer" "pc-tbed-tpu-06014.cern.ch" - "Computer" "pc-tbed-tpu-06015.cern.ch" - "Computer" "pc-tbed-tpu-06016.cern.ch" - "Computer" "pc-tbed-tpu-06017.cern.ch" - "Computer" "pc-tbed-tpu-06018.cern.ch" - "Computer" "pc-tbed-tpu-06019.cern.ch" - "Computer" "pc-tbed-tpu-06020.cern.ch" - "Computer" "pc-tbed-tpu-06021.cern.ch" - "Computer" "pc-tbed-tpu-06022.cern.ch" - "Computer" "pc-tbed-tpu-06023.cern.ch" - "Computer" "pc-tbed-tpu-06024.cern.ch" - "Computer" "pc-tbed-tpu-06025.cern.ch" - "Computer" "pc-tbed-tpu-06026.cern.ch" - "Computer" "pc-tbed-tpu-06027.cern.ch" - "Computer" "pc-tbed-tpu-06028.cern.ch" - "Computer" "pc-tbed-tpu-06029.cern.ch" - "Computer" "pc-tbed-tpu-06030.cern.ch" - "Computer" "pc-tbed-tpu-06031.cern.ch" - "Computer" "pc-tbed-tpu-06032.cern.ch" - "Computer" "pc-tbed-tpu-06033.cern.ch" - "Computer" "pc-tbed-tpu-06034.cern.ch" - "Computer" "pc-tbed-tpu-06035.cern.ch" - "Computer" "pc-tbed-tpu-06036.cern.ch" - </rel> -</obj> - -<obj class="ComputerSet" id="tpu-rack-07"> - <rel name="Contains" num="1"> - "ComputerSet" "tpu-rack-07-trim" - </rel> -</obj> - -<obj class="ComputerSet" id="tpu-rack-07-trim"> - <rel name="Contains" num="31"> - "Computer" "pc-tbed-tpu-07001.cern.ch" - "Computer" "pc-tbed-tpu-07002.cern.ch" - "Computer" "pc-tbed-tpu-07003.cern.ch" - "Computer" "pc-tbed-tpu-07004.cern.ch" - "Computer" "pc-tbed-tpu-07005.cern.ch" - "Computer" "pc-tbed-tpu-07006.cern.ch" - "Computer" "pc-tbed-tpu-07007.cern.ch" - "Computer" "pc-tbed-tpu-07008.cern.ch" - "Computer" "pc-tbed-tpu-07009.cern.ch" - "Computer" "pc-tbed-tpu-07010.cern.ch" - "Computer" "pc-tbed-tpu-07011.cern.ch" - "Computer" "pc-tbed-tpu-07012.cern.ch" - "Computer" "pc-tbed-tpu-07013.cern.ch" - "Computer" "pc-tbed-tpu-07014.cern.ch" - "Computer" "pc-tbed-tpu-07015.cern.ch" - "Computer" "pc-tbed-tpu-07016.cern.ch" - "Computer" "pc-tbed-tpu-07017.cern.ch" - "Computer" "pc-tbed-tpu-07018.cern.ch" - "Computer" "pc-tbed-tpu-07019.cern.ch" - "Computer" "pc-tbed-tpu-07020.cern.ch" - "Computer" "pc-tbed-tpu-07021.cern.ch" - "Computer" "pc-tbed-tpu-07022.cern.ch" - "Computer" "pc-tbed-tpu-07023.cern.ch" - "Computer" "pc-tbed-tpu-07024.cern.ch" - "Computer" "pc-tbed-tpu-07025.cern.ch" - "Computer" "pc-tbed-tpu-07026.cern.ch" - "Computer" "pc-tbed-tpu-07027.cern.ch" - "Computer" "pc-tbed-tpu-07028.cern.ch" - "Computer" "pc-tbed-tpu-07029.cern.ch" - "Computer" "pc-tbed-tpu-07030.cern.ch" - "Computer" "pc-tbed-tpu-07031.cern.ch" - </rel> -</obj> - -<obj class="ConfigurationRule" id="DcmISRule"> - <attr name="IncludeFilter" type="string">".*"</attr> - <attr name="ExcludeFilter" type="string">""</attr> - <attr name="Name" type="string">""</attr> - <rel name="Parameters">"ISPublishingParameters" "DcmISPublishingParameters"</rel> -</obj> - -<obj class="ConfigurationRule" id="DcmOHRule"> - <attr name="IncludeFilter" type="string">".*"</attr> - <attr name="ExcludeFilter" type="string">""</attr> - <attr name="Name" type="string">""</attr> - <rel name="Parameters">"OHPublishingParameters" "DcmOHPublishingParameters"</rel> -</obj> - -<obj class="ConfigurationRule" id="DefaultOHRule"> - <attr name="IncludeFilter" type="string">".*"</attr> - <attr name="ExcludeFilter" type="string">""</attr> - <attr name="Name" type="string">""</attr> - <rel name="Parameters">"OHPublishingParameters" "DefaultOHPublishingParameters"</rel> -</obj> - -<obj class="ConfigurationRule" id="HltpuISRule"> - <attr name="IncludeFilter" type="string">".*"</attr> - <attr name="ExcludeFilter" type="string">""</attr> - <attr name="Name" type="string">""</attr> - <rel name="Parameters">"ISPublishingParameters" "HltpuISPublishingParameters"</rel> -</obj> - -<obj class="ConfigurationRule" id="HltpuOHRule"> - <attr name="IncludeFilter" type="string">".*"</attr> - <attr name="ExcludeFilter" type="string">""</attr> - <attr name="Name" type="string">""</attr> - <rel name="Parameters">"OHPublishingParameters" "HltpuOHPublishingParameters"</rel> -</obj> - -<obj class="ConfigurationRule" id="HltsvISRule"> - <attr name="IncludeFilter" type="string">".*"</attr> - <attr name="ExcludeFilter" type="string">""</attr> - <attr name="Name" type="string">""</attr> - <rel name="Parameters">"ISPublishingParameters" "HltsvISPublishingParameters"</rel> -</obj> - -<obj class="ConfigurationRule" id="HltsvOHRule"> - <attr name="IncludeFilter" type="string">".*"</attr> - <attr name="ExcludeFilter" type="string">""</attr> - <attr name="Name" type="string">""</attr> - <rel name="Parameters">"OHPublishingParameters" "HltsvOHPublishingParameters"</rel> -</obj> - -<obj class="ConfigurationRule" id="SfoDefaultISRule"> - <attr name="IncludeFilter" type="string">".*"</attr> - <attr name="ExcludeFilter" type="string">".*WIOS.*"</attr> - <attr name="Name" type="string">""</attr> - <rel name="Parameters">"ISPublishingParameters" "DefaultISPublishingParameters"</rel> -</obj> - -<obj class="ConfigurationRule" id="SfoWiosISRule"> - <attr name="IncludeFilter" type="string">".*WIOS.*"</attr> - <attr name="ExcludeFilter" type="string">""</attr> - <attr name="Name" type="string">""</attr> - <rel name="Parameters">"ISPublishingParameters" "SfoWiosDFISPublishingParameters"</rel> -</obj> - -<obj class="ConfigurationRuleBundle" id="DcmConfigurationRuleBundle"> - <rel name="LinkedBundles" num="0"></rel> - <rel name="Rules" num="2"> - "ConfigurationRule" "DcmOHRule" - "ConfigurationRule" "DcmISRule" - </rel> -</obj> - -<obj class="ConfigurationRuleBundle" id="HltpuConfigurationRuleBundle"> - <rel name="LinkedBundles" num="0"></rel> - <rel name="Rules" num="2"> - "ConfigurationRule" "HltpuOHRule" - "ConfigurationRule" "HltpuISRule" - </rel> -</obj> - -<obj class="ConfigurationRuleBundle" id="HltsvConfigurationRuleBundle"> - <rel name="LinkedBundles" num="0"></rel> - <rel name="Rules" num="2"> - "ConfigurationRule" "HltsvOHRule" - "ConfigurationRule" "HltsvISRule" - </rel> -</obj> - -<obj class="ConfigurationRuleBundle" id="SfoConfigurationRuleBundle"> - <rel name="LinkedBundles" num="0"></rel> - <rel name="Rules" num="3"> - "ConfigurationRule" "DefaultOHRule" - "ConfigurationRule" "SfoDefaultISRule" - "ConfigurationRule" "SfoWiosISRule" - </rel> -</obj> - -<obj class="CustomLifetimeApplication" id="oh_clean_SOR"> - <attr name="Lifetime" type="enum">"SOR_EOR"</attr> - <attr name="AllowSpontaneousExit" type="bool">1</attr> - <attr name="Parameters" type="string">"-p ${TDAQ_PARTITION} -s ".*" -n ".*" -o ".*""</attr> - <attr name="RestartParameters" type="string">"-p ${TDAQ_PARTITION} -s ".*" -n ".*" -o ".*""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">0</attr> - <attr name="ExitTimeout" type="u32">37</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Ignore"</attr> - <attr name="IfFailsToStart" type="enum">"Ignore"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "oh_rm"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="CustomLifetimeTemplateApplication" id="HLT_DB_Gen"> - <attr name="Lifetime" type="enum">"Boot_Shutdown"</attr> - <attr name="AllowSpontaneousExit" type="bool">1</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"AllButFirstHost"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "dal_create_db_connection_files"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="2"> - "Variable" "DEFAULT_HLT_CORAL_DBLOOKUP_PATH" - "Variable" "DEFAULT_HLT_CORAL_AUTH_PATH" - </rel> -</obj> - -<obj class="CustomLifetimeTemplateApplication" id="NodeCoralProxy"> - <attr name="Lifetime" type="enum">"Boot_Shutdown"</attr> - <attr name="AllowSpontaneousExit" type="bool">0</attr> - <attr name="Parameters" type="string">"-v -m -p 3320 -s 3320 env(TDAQ_CORAL_PROXY_HOST)"</attr> - <attr name="RestartParameters" type="string">"-v -m -p 3320 -s 3320 env(TDAQ_CORAL_PROXY_HOST)"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">0</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"AllButFirstHost"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "coralServerProxy"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="DFParameters" id="Default-DFParameters-1"> - <attr name="Name" type="string">"Default-DFParameters-1"</attr> - <attr name="BasePortEFD_SFI" type="u16">10000</attr> - <attr name="BasePortEFD_SFO" type="u16">11000</attr> - <attr name="MulticastAddress" type="string">""</attr> - <attr name="DefaultDataNetworks" type="string" num="3"> - "128.141.0.0/255.255.0.0" - "188.184.2.64/255.255.255.192" - "137.138.0.0/255.255.0.0" - </attr> - <rel name="UsesDataFiles" num="0"></rel> -</obj> - -<obj class="DFTriggerIn" id="ROS-Segment-1-TriggerIn"> - <attr name="DeleteGrouping" type="u32">100</attr> - <attr name="nDataServerThreads" type="u32">2</attr> -</obj> - -<obj class="DataAccess" id="accessAnySubdetector"> - <attr name="subDetector" type="u8">0</attr> - <attr name="nROBDistribution" type="string">"F|TMath::Gaus(x,2,2)|1|5"</attr> - <attr name="comment" type="string">"1-5 ROBS from any sub detector."</attr> -</obj> - -<obj class="DataAccess" id="accessAnySubdetector-1"> - <attr name="subDetector" type="u8">0</attr> - <attr name="nROBDistribution" type="string">"C|1"</attr> - <attr name="comment" type="string">"Access 1 ROB in any sub detector."</attr> -</obj> - -<obj class="DcmApplication" id="dcm"> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">10</attr> - <attr name="ProbeInterval" type="s32">25</attr> - <attr name="FullStatisticsInterval" type="s32">63</attr> - <attr name="IfError" type="enum">"Error"</attr> - <attr name="ControlsTTCPartitions" type="bool">0</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">0</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Handle"</attr> - <attr name="IfFailsToStart" type="enum">"Ignore"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"AllButFirstHost"</attr> - <attr name="infoAverageInterval_s" type="u32">100</attr> - <attr name="histogramVerbosity" type="u32">0</attr> - <attr name="hiddenParameters" type="string" num="0"></attr> - <attr name="dynamicUpdate" type="bool">1</attr> - <attr name="samplerBufferSize" type="u32">5</attr> - <attr name="maxConnectDelay_s" type="u32">0</attr> - <attr name="sbaDirectory" type="string">"/tmp"</attr> - <attr name="sbaBaseName" type="string">"dcm"</attr> - <attr name="sbaNumOfBlocks" type="u32">32</attr> - <attr name="sbaBlockSize_MiB" type="u32">32</attr> - <attr name="sbaRecoveryMode" type="enum">"NONE"</attr> - <attr name="compressionAlgorithm" type="enum">"NONE"</attr> - <attr name="UpperEdgeSizeHistos" type="float">3000</attr> - <attr name="UpperEdgeTimeHistos" type="float">2000</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "dcm_main"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="ConfigurationRules">"ConfigurationRuleBundle" "DcmConfigurationRuleBundle"</rel> - <rel name="l1Source">"DcmHltsvL1Source" "dcmL1Source"</rel> - <rel name="dataCollector">"DcmRosDataCollector" "dcmRosDataCollector"</rel> - <rel name="processor">"DcmHltpuProcessor" "dcmHltpuProcessor"</rel> - <rel name="output">"DcmSfoOutput" "dcmSfoOutput"</rel> -</obj> - -<obj class="DcmHltpuProcessor" id="dcmHltpuProcessor"> - <attr name="processingTimeOut_ms" type="u32">60000</attr> - <attr name="maxOutputEvents" type="u32">10</attr> - <attr name="markDoneAfterEventBuilding" type="bool">1</attr> - <rel name="bcidCheckIgnoreSubdetectors" num="0"></rel> - <rel name="bcidCheckSilentSubdetectors" num="0"></rel> -</obj> - -<obj class="DcmHltsvL1Source" id="dcmL1Source"> - <attr name="maxClearDelay_ms" type="u32">1000</attr> -</obj> - -<obj class="DcmRosDataCollector" id="dcmRosDataCollector"> - <attr name="nRequestCredits" type="u32">64</attr> - <attr name="requestTimeout_s" type="u32">10</attr> -</obj> - -<obj class="DcmSfoOutput" id="dcmSfoOutput"> - <attr name="requestTimeout_s" type="u32">100</attr> - <attr name="acknowledgmentTimeout_s" type="u32">10</attr> - <attr name="onlyLocalSfo" type="bool">0</attr> -</obj> - -<obj class="Detector" id="PIXEL_BARREL"> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="State" type="bool">0</attr> - <attr name="LogicalId" type="u8">17</attr> - <rel name="HW_Systems" num="0"></rel> - <rel name="HW_Objects" num="0"></rel> -</obj> - -<obj class="DummyCalStreamTag" id="EF-Calibration-Tag-0"> - <attr name="name" type="string">"EF-Calibration-Tag-0"</attr> - <attr name="probability" type="float">0.1</attr> - <attr name="comment" type="string">""</attr> - <rel name="calibData">"DataAccess" "accessAnySubdetector"</rel> -</obj> - -<obj class="DummyROBStep" id="calo_algorithm-1"> - <attr name="burnTimeDistribution" type="string">"F|TMath::Gaus(x,20000,20)|5000|500000"</attr> - <attr name="comment" type="string">""</attr> - <rel name="physicsTag">"DummyStreamTag" "L2-CaloPhysics-Tag-0"</rel> - <rel name="debugTag">"DummyStreamTag" "L2-Debug-Tag-0"</rel> - <rel name="calibrationTag">"" ""</rel> - <rel name="roi" num="1"> - "DataAccess" "accessAnySubdetector-1" - </rel> -</obj> - -<obj class="DummyStep" id="efStep"> - <attr name="burnTimeDistribution" type="string">"C|500000"</attr> - <attr name="comment" type="string">""</attr> - <rel name="physicsTag">"DummyStreamTag" "EF-Physics-Tag-0"</rel> - <rel name="debugTag">"DummyStreamTag" "EF-Debug-Tag-0"</rel> - <rel name="calibrationTag">"DummyCalStreamTag" "EF-Calibration-Tag-0"</rel> -</obj> - -<obj class="DummyStreamTag" id="EF-Debug-Tag-0"> - <attr name="name" type="string">""</attr> - <attr name="probability" type="float">0.1</attr> - <attr name="comment" type="string">""</attr> -</obj> - -<obj class="DummyStreamTag" id="EF-Physics-Tag-0"> - <attr name="name" type="string">""</attr> - <attr name="probability" type="float">0.25</attr> - <attr name="comment" type="string">""</attr> -</obj> - -<obj class="DummyStreamTag" id="L2-CaloPhysics-Tag-0"> - <attr name="name" type="string">""</attr> - <attr name="probability" type="float">0.2</attr> - <attr name="comment" type="string">""</attr> -</obj> - -<obj class="DummyStreamTag" id="L2-Debug-Tag-0"> - <attr name="name" type="string">""</attr> - <attr name="probability" type="float">0</attr> - <attr name="comment" type="string">""</attr> -</obj> - -<obj class="EmulatedReadoutConfiguration" id="ROS-Segment-1-EmulatedConfig"> - <attr name="GetFragmentDelay" type="u32">0</attr> - <attr name="MessageDelay" type="u32">0</attr> - <attr name="ReleaseDelay" type="u32">0</attr> - <attr name="ReleaseGroupDelay" type="u32">0</attr> - <attr name="GetMissingFragment" type="float">0</attr> - <attr name="DetEvType" type="u32">0</attr> - <attr name="NumberOfStatusElements" type="s32">1</attr> - <attr name="StatusBlockPosition" type="u32">0</attr> - <attr name="DataSize" type="enum">"FIXED"</attr> -</obj> - -<obj class="EmulatedReadoutModule" id="EMULATED-MODULE-PIXEL_BARREL-00-0"> - <attr name="PhysAddress" type="u32">0</attr> - <rel name="Contains" num="31"> - "InputChannel" "ROL-PIXEL_BARREL-00-111705" - "InputChannel" "ROL-PIXEL_BARREL-00-111706" - "InputChannel" "ROL-PIXEL_BARREL-00-111707" - "InputChannel" "ROL-PIXEL_BARREL-00-111708" - "InputChannel" "ROL-PIXEL_BARREL-00-111709" - "InputChannel" "ROL-PIXEL_BARREL-00-111710" - "InputChannel" "ROL-PIXEL_BARREL-00-111711" - "InputChannel" "ROL-PIXEL_BARREL-00-111712" - "InputChannel" "ROL-PIXEL_BARREL-00-111714" - "InputChannel" "ROL-PIXEL_BARREL-00-111715" - "InputChannel" "ROL-PIXEL_BARREL-00-111716" - "InputChannel" "ROL-PIXEL_BARREL-00-111717" - "InputChannel" "ROL-PIXEL_BARREL-00-111718" - "InputChannel" "ROL-PIXEL_BARREL-00-111719" - "InputChannel" "ROL-PIXEL_BARREL-00-111720" - "InputChannel" "ROL-PIXEL_BARREL-00-111721" - "InputChannel" "ROL-PIXEL_BARREL-00-111805" - "InputChannel" "ROL-PIXEL_BARREL-00-111806" - "InputChannel" "ROL-PIXEL_BARREL-00-111807" - "InputChannel" "ROL-PIXEL_BARREL-00-111808" - "InputChannel" "ROL-PIXEL_BARREL-00-111809" - "InputChannel" "ROL-PIXEL_BARREL-00-111810" - "InputChannel" "ROL-PIXEL_BARREL-00-111811" - "InputChannel" "ROL-PIXEL_BARREL-00-111812" - "InputChannel" "ROL-PIXEL_BARREL-00-111814" - "InputChannel" "ROL-PIXEL_BARREL-00-111815" - "InputChannel" "ROL-PIXEL_BARREL-00-111816" - "InputChannel" "ROL-PIXEL_BARREL-00-111817" - "InputChannel" "ROL-PIXEL_BARREL-00-111818" - "InputChannel" "ROL-PIXEL_BARREL-00-111819" - "InputChannel" "ROL-PIXEL_BARREL-00-111820" - </rel> - <rel name="Configuration">"EmulatedReadoutConfiguration" "ROS-Segment-1-EmulatedConfig"</rel> -</obj> - -<obj class="Executable" id="test_app_pmg"> - <attr name="Host" type="string">""</attr> - <attr name="Parameters" type="string">"-p ${TDAQ_PARTITION} -H #this.RunsOn.UID #this.BackupHosts.UID -a #this.UID"</attr> - <attr name="InitTimeout" type="s32">0</attr> - <rel name="Executes">"Binary" "test_app_pmg"</rel> - <rel name="InitDependsOn" num="0"></rel> -</obj> - -<obj class="Executable" id="test_dummy"> - <attr name="Host" type="string">""</attr> - <attr name="Parameters" type="string">"-d 0"</attr> - <attr name="InitTimeout" type="s32">5</attr> - <rel name="Executes">"Binary" "test_dummy"</rel> - <rel name="InitDependsOn" num="0"></rel> -</obj> - -<obj class="Executable" id="test_dummy_fail_0.01"> - <attr name="Host" type="string">""</attr> - <attr name="Parameters" type="string">"-d 0 -f 0.01 -r 4"</attr> - <attr name="InitTimeout" type="s32">5</attr> - <rel name="Executes">"Binary" "test_dummy"</rel> - <rel name="InitDependsOn" num="0"></rel> -</obj> - -<obj class="Executable" id="test_dummy_long"> - <attr name="Host" type="string">""</attr> - <attr name="Parameters" type="string">"-d 2 -s 5 -r 5 -f 0.01"</attr> - <attr name="InitTimeout" type="s32">10</attr> - <rel name="Executes">"Binary" "test_dummy"</rel> - <rel name="InitDependsOn" num="0"></rel> -</obj> - -<obj class="Executable" id="test_host"> - <attr name="Host" type="string">"#this.UID"</attr> - <attr name="Parameters" type="string">"-ld ${TDAQ_LOGS_PATH} -fs 10 -ul 96 -ml 9.99 -sd ${TDAQ_INST_PATH}"</attr> - <attr name="InitTimeout" type="s32">0</attr> - <rel name="Executes">"Script" "test_host_system.sh"</rel> - <rel name="InitDependsOn" num="0"></rel> -</obj> - -<obj class="Executable" id="test_ipc_server"> - <attr name="Host" type="string">""</attr> - <attr name="Parameters" type="string">"-p ${TDAQ_PARTITION}"</attr> - <attr name="InitTimeout" type="s32">0</attr> - <rel name="Executes">"Binary" "test_ipc_server"</rel> - <rel name="InitDependsOn" num="0"></rel> -</obj> - -<obj class="Executable" id="test_is_server"> - <attr name="Host" type="string">""</attr> - <attr name="Parameters" type="string">" -p ${TDAQ_PARTITION} -n #this.UID"</attr> - <attr name="InitTimeout" type="s32">0</attr> - <rel name="Executes">"Binary" "test_is_server"</rel> - <rel name="InitDependsOn" num="0"></rel> -</obj> - -<obj class="Executable" id="test_is_server_initial"> - <attr name="Host" type="string">""</attr> - <attr name="Parameters" type="string">" -p ${TDAQ_PARTITION} -n #this.IPCName"</attr> - <attr name="InitTimeout" type="s32">0</attr> - <rel name="Executes">"Binary" "test_is_server"</rel> - <rel name="InitDependsOn" num="0"></rel> -</obj> - -<obj class="Executable" id="test_nic_dummy"> - <attr name="Host" type="string">"#this.&Computer@Interfaces.UID"</attr> - <attr name="Parameters" type="string">"-d 1"</attr> - <attr name="InitTimeout" type="s32">2</attr> - <rel name="Executes">"Binary" "test_dummy"</rel> - <rel name="InitDependsOn" num="0"></rel> -</obj> - -<obj class="Executable" id="test_pmg"> - <attr name="Host" type="string">"#this.UID"</attr> - <attr name="Parameters" type="string">"-H #this.UID"</attr> - <attr name="InitTimeout" type="s32">0</attr> - <rel name="Executes">"Binary" "test_pmg_agent"</rel> - <rel name="InitDependsOn" num="0"></rel> -</obj> - -<obj class="Executable" id="test_program_file"> - <attr name="Host" type="string">""</attr> - <attr name="Parameters" type="string">"-f #this.BinaryName"</attr> - <attr name="InitTimeout" type="s32">0</attr> - <rel name="Executes">"Binary" "test_program_file"</rel> - <rel name="InitDependsOn" num="0"></rel> -</obj> - -<obj class="HLTDFDCMBackend" id="DataSource-is-DCM"> - <attr name="library" type="string">"dfinterfaceDcm"</attr> - <attr name="extraParams" type="string" num="0"></attr> -</obj> - -<obj class="HLTMPPUApplication" id="HLTMPPU-1"> - <attr name="Lifetime" type="enum">"Configure_Unconfigure"</attr> - <attr name="AllowSpontaneousExit" type="bool">0</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">0</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">0</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Handle"</attr> - <attr name="IfFailsToStart" type="enum">"Ignore"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"AllButFirstHost"</attr> - <rel name="InitializationDependsFrom" num="1"> - "HLTRCApplication" "HLTRC" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "HLTMPPU_main"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="HLTMonInfoImpl" id="hltMonSvc"> - <attr name="library" type="string">"MonSvcInfoService"</attr> - <attr name="extraParams" type="string" num="0"></attr> - <rel name="ConfigurationRules">"ConfigurationRuleBundle" "HltpuConfigurationRuleBundle"</rel> -</obj> - -<obj class="HLTRCApplication" id="HLTRC"> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Handle"</attr> - <attr name="IfFailsToStart" type="enum">"Ignore"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"AllButFirstHost"</attr> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">10</attr> - <attr name="ProbeInterval" type="s32">25</attr> - <attr name="FullStatisticsInterval" type="s32">63</attr> - <attr name="IfError" type="enum">"Error"</attr> - <attr name="ControlsTTCPartitions" type="bool">0</attr> - <attr name="numForks" type="u16">1</attr> - <attr name="numberOfAthenaMTThreads" type="u16">1</attr> - <attr name="numberOfEventSlots" type="u16">1</attr> - <attr name="finalizeTimeout" type="u16">120</attr> - <attr name="extraParams" type="string" num="0"></attr> - <attr name="softTimeoutFraction" type="double">0.8</attr> - <attr name="SolenoidCurrentPath" type="string">"initial/DCS_GENERAL.MagnetSolenoidCurrent.value"</attr> - <attr name="ToroidCurrentPath" type="string">"initial/DCS_GENERAL.MagnetToroidsCurrent.value"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "HLTRC_main"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="DataSource">"HLTDFDCMBackend" "DataSource-is-DCM"</rel> - <rel name="InfoService">"HLTMonInfoImpl" "hltMonSvc"</rel> - <rel name="MuonCalibrationConfig">"" ""</rel> -</obj> - -<obj class="HLTSVApplication" id="HLTSV"> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">10</attr> - <attr name="ProbeInterval" type="s32">25</attr> - <attr name="FullStatisticsInterval" type="s32">63</attr> - <attr name="IfError" type="enum">"Error"</attr> - <attr name="ControlsTTCPartitions" type="bool">0</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Timeout" type="u32">10000</attr> - <attr name="NumberOfAssignThreads" type="u32">8</attr> - <attr name="ClearGrouping" type="u32">100</attr> - <attr name="EventDelay" type="u32">0</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "hltsv_main"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-pub-32.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> - <rel name="ConfigurationRules">"ConfigurationRuleBundle" "HltsvConfigurationRuleBundle"</rel> - <rel name="RoIBInput">"RoIBPluginInternal" "RoIBPluginInternal-1"</rel> -</obj> - -<obj class="IPCServiceApplication" id="CEP-initial"> - <attr name="InterfaceName" type="string">"es/ExpertSystem"</attr> - <attr name="IPCName" type="string">"CentralES"</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">15</attr> - <attr name="ExitTimeout" type="u32">10</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="4"> - "IPCServiceApplication" "RunCtrl_IS" - "IPCServiceApplication" "Setup_IS" - "IPCServiceApplication" "RDB_INITIAL" - "IPCServiceApplication" "MTS_IS" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Script" "ces"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="CHIP"> - <attr name="InterfaceName" type="string">"es/ExpertSystem"</attr> - <attr name="IPCName" type="string">"CentralES"</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">15</attr> - <attr name="ExitTimeout" type="u32">10</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="4"> - "InfrastructureApplication" "ipc-server" - "IPCServiceApplication" "RDB" - "IPCServiceApplication" "RunCtrl" - "IPCServiceApplication" "MTS" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Script" "ces"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-02.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="DDC"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"</attr> - <attr name="RestartParameters" type="string">"-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "IPCServiceApplication" "mts-worker" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="3"> - "Computer" "pc-tbed-pub-22.cern.ch" - "Computer" "pc-tbed-pub-23.cern.ch" - "Computer" "pc-tbed-pub-24.cern.ch" - </rel> -</obj> - -<obj class="IPCServiceApplication" id="DF"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="RestartParameters" type="string">"-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">"TDAQ_IS_SERVER"</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="DFConfig"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="RestartParameters" type="string">"-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">"DF_CONFIG_IS_SERVER"</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "IPCServiceApplication" "mts-worker" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="DQM"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="RestartParameters" type="string">"-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "IPCServiceApplication" "mts-worker" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="Histogramming"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="RestartParameters" type="string">"-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">"TDAQ_OH_SERVER"</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="ISRepository"> - <attr name="InterfaceName" type="string">"rdb/cursor"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="2"> - "IPCServiceApplication" "mts-worker" - "IPCServiceApplication" "RDB" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Script" "dal_load_is_info_files.sh"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="ISRepository-initial"> - <attr name="InterfaceName" type="string">"rdb/cursor"</attr> - <attr name="IPCName" type="string">"ISRepository"</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="2"> - "IPCServiceApplication" "mts-worker-initial" - "IPCServiceApplication" "RDB_INITIAL" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Script" "dal_load_is_info_files.sh"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="LHC"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">"LHC"</attr> - <attr name="Parameters" type="string">"-s -n LHC"</attr> - <attr name="RestartParameters" type="string">"-s -n LHC"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">20</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "IPCServiceApplication" "mts-worker-initial" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="MTS"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="RestartParameters" type="string">"-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "InfrastructureApplication" "ipc-server" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="MTS_IS"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">"MTS"</attr> - <attr name="Parameters" type="string">"-s -n MTS"</attr> - <attr name="RestartParameters" type="string">"-s -n MTS"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="Monitoring"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="RestartParameters" type="string">"-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "IPCServiceApplication" "mts-worker" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="PMG"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="RestartParameters" type="string">"-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "IPCServiceApplication" "mts-worker" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="PMG_IS"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">"PMG"</attr> - <attr name="Parameters" type="string">"-s -n PMG "</attr> - <attr name="RestartParameters" type="string">"-s -n PMG "</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "IPCServiceApplication" "mts-worker-initial" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="RDB"> - <attr name="InterfaceName" type="string">"rdb/cursor"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">" -D $(TDAQ_DB_DATA) -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"</attr> - <attr name="RestartParameters" type="string">" -D $(TDAQ_DB_DATA) -r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "InfrastructureApplication" "ipc-server" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "rdb_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="RDB_INITIAL"> - <attr name="InterfaceName" type="string">"rdb/cursor"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-D $(TDAQ_DB_DATA) -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"</attr> - <attr name="RestartParameters" type="string">"-D $(TDAQ_DB_DATA) -r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">"TDAQ_DB_NAME"</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "rdb_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="RDB_RW"> - <attr name="InterfaceName" type="string">"rdb/writer"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-D $(TDAQ_DB_DATA) -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"</attr> - <attr name="RestartParameters" type="string">"-D $(TDAQ_DB_DATA) -r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "InfrastructureApplication" "ipc-server" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "rdb_writer"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "OKS_VERBOSE" - </rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="Resources"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="RestartParameters" type="string">"-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "IPCServiceApplication" "mts-worker" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="RunCtrl"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 5"</attr> - <attr name="RestartParameters" type="string">"-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 5"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "InfrastructureApplication" "ipc-server" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="RunCtrlStatistics"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 5"</attr> - <attr name="RestartParameters" type="string">"-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 5"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "InfrastructureApplication" "ipc-server" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="RunCtrl_IS"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">"RunCtrl"</attr> - <attr name="Parameters" type="string">"-s -n RunCtrl"</attr> - <attr name="RestartParameters" type="string">"-s -n RunCtrl"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="RunParams"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 5"</attr> - <attr name="RestartParameters" type="string">"-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 5"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "IPCServiceApplication" "mts-worker" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="RunParams_IS"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">"RunParams"</attr> - <attr name="Parameters" type="string">"-s -n RunParams"</attr> - <attr name="RestartParameters" type="string">"-s -n RunParams"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="Setup"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="RestartParameters" type="string">"-r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -t 30"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "InfrastructureApplication" "ipc-server" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="Setup_IS"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">"Setup"</attr> - <attr name="Parameters" type="string">"-s -n Setup"</attr> - <attr name="RestartParameters" type="string">"-s -n Setup "</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="monitoring-conductor"> - <attr name="InterfaceName" type="string">"EventMonitoring/Conductor"</attr> - <attr name="IPCName" type="string">"Conductor"</attr> - <attr name="Parameters" type="string">"-s -p ${TDAQ_PARTITION}"</attr> - <attr name="RestartParameters" type="string">"-s -p ${TDAQ_PARTITION}"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "IPCServiceApplication" "mts-worker" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "emon_conductor"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="mts-worker"> - <attr name="InterfaceName" type="string">"mts/worker"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-s "</attr> - <attr name="RestartParameters" type="string">"-s"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">10</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "IPCServiceApplication" "MTS" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "mts_worker"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="5"> - "Variable" "WARNING_STREAM_NOMTS" - "Variable" "INFO_STREAM_NOMTS" - "Variable" "ERROR_STREAM_NOMTS" - "Variable" "FATAL_STREAM_NOMTS" - "Variable" "OKS_DB_ROOT" - </rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="mts-worker-initial"> - <attr name="InterfaceName" type="string">"mts/worker"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-s "</attr> - <attr name="RestartParameters" type="string">"-s"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">10</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "IPCServiceApplication" "MTS_IS" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "mts_worker"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="5"> - "Variable" "OKS_DB_ROOT" - "Variable" "ERROR_STREAM_NOMTS" - "Variable" "FATAL_STREAM_NOMTS" - "Variable" "INFO_STREAM_NOMTS" - "Variable" "WARNING_STREAM_NOMTS" - </rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceApplication" id="rm-server"> - <attr name="InterfaceName" type="string">"rmgr/ResMgr"</attr> - <attr name="IPCName" type="string">"RM_Server"</attr> - <attr name="Parameters" type="string">"-n RM_Server -r -l ${TDAQ_BACKUP_PATH}/env{TDAQ_APPLICATION_NAME}.backup"</attr> - <attr name="RestartParameters" type="string">"-n RM_Server "</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">0</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Restart"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "rmgr_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="5"> - "Variable" "INFO_STREAM_NOMTS" - "Variable" "WARNING_STREAM_NOMTS" - "Variable" "ORBmaxServerThreadPoolSize" - "Variable" "ORBthreadPerConnectionPolicy" - "Variable" "TDAQ_RM_CONFIG" - </rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="IPCServiceTemplateApplication" id="DF_Histogramming"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-s -p env(TDAQ_PARTITION) -n env(TDAQ_APPLICATION_NAME)"</attr> - <attr name="RestartParameters" type="string">"-s -p env(TDAQ_PARTITION) -n env(TDAQ_APPLICATION_NAME)"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"FirstHost"</attr> - <attr name="SegmentProcEnvVarName" type="string">"TDAQ_OH_SERVER"</attr> - <attr name="SegmentProcEnvVarParentName" type="string">"PARENT_OH_SERVER"</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="IPCServiceTemplateApplication" id="DF_IS"> - <attr name="InterfaceName" type="string">"is/repository"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-s -p env(TDAQ_PARTITION) -n env(TDAQ_APPLICATION_NAME)"</attr> - <attr name="RestartParameters" type="string">"-s -p env(TDAQ_PARTITION) -n env(TDAQ_APPLICATION_NAME)"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"FirstHost"</attr> - <attr name="SegmentProcEnvVarName" type="string">"TDAQ_IS_SERVER"</attr> - <attr name="SegmentProcEnvVarParentName" type="string">"PARENT_IS_SERVER"</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "is_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="IPCServiceTemplateApplication" id="DefRDB"> - <attr name="InterfaceName" type="string">"rdb/cursor"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="Parameters" type="string">"-s -o RDB -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup ${TDAQ_RDB_THREADING}"</attr> - <attr name="RestartParameters" type="string">"-s -o RDB -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup ${TDAQ_RDB_THREADING}"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"FirstHost"</attr> - <attr name="SegmentProcEnvVarName" type="string">"TDAQ_DB_NAME"</attr> - <attr name="SegmentProcEnvVarParentName" type="string">"TDAQ_DB_PARENT_NAME"</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "rdb_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "TEMPLATE_RDB_IPC_TIMEOUT" - </rel> -</obj> - -<obj class="ISPublishingParameters" id="DcmISPublishingParameters"> - <attr name="PublishInterval" type="u32">5</attr> - <attr name="NumberOfSlots" type="u32">1</attr> - <attr name="ISServer" type="string">"${TDAQ_IS_SERVER=DF}"</attr> -</obj> - -<obj class="ISPublishingParameters" id="DefaultISPublishingParameters"> - <attr name="PublishInterval" type="u32">5</attr> - <attr name="NumberOfSlots" type="u32">1</attr> - <attr name="ISServer" type="string">"${TDAQ_IS_SERVER=DF}"</attr> -</obj> - -<obj class="ISPublishingParameters" id="HltpuISPublishingParameters"> - <attr name="PublishInterval" type="u32">5</attr> - <attr name="NumberOfSlots" type="u32">1</attr> - <attr name="ISServer" type="string">"${TDAQ_IS_SERVER=DF}"</attr> -</obj> - -<obj class="ISPublishingParameters" id="HltsvISPublishingParameters"> - <attr name="PublishInterval" type="u32">5</attr> - <attr name="NumberOfSlots" type="u32">1</attr> - <attr name="ISServer" type="string">"DF"</attr> -</obj> - -<obj class="ISPublishingParameters" id="SfoWiosDFISPublishingParameters"> - <attr name="PublishInterval" type="u32">5</attr> - <attr name="NumberOfSlots" type="u32">1</attr> - <attr name="ISServer" type="string">"DF"</attr> -</obj> - -<obj class="IS_EventsAndRates" id="part_hlt_jholm-hlt-counter"> - <attr name="EventCounter" type="string">"DF.HLTSV.Events.ProcessedEvents"</attr> - <attr name="Rate" type="string">"DF.HLTSV.Events.Rate"</attr> - <attr name="Description" type="string">"HLT Counter"</attr> -</obj> - -<obj class="IS_EventsAndRates" id="part_hlt_jholm-lvl1-counter"> - <attr name="EventCounter" type="string">"DF.HLTSV.Events.LVL1Events"</attr> - <attr name="Rate" type="string">""</attr> - <attr name="Description" type="string">"LVL1 Counter"</attr> -</obj> - -<obj class="IS_EventsAndRates" id="part_hlt_jholm-recording-counter"> - <attr name="EventCounter" type="string">"DF_IS:HLT.SFO-1.Counters.Global.WritingTotalEvents"</attr> - <attr name="Rate" type="string">"DF_IS:HLT.SFO-1.Counters.Global.WritingEventRate"</attr> - <attr name="Description" type="string">"Recording Counter"</attr> -</obj> - -<obj class="IS_InformationSources" id="part_hlt_jholm-counters"> - <rel name="LVL1">"IS_EventsAndRates" "part_hlt_jholm-lvl1-counter"</rel> - <rel name="HLT">"IS_EventsAndRates" "part_hlt_jholm-hlt-counter"</rel> - <rel name="Recording">"IS_EventsAndRates" "part_hlt_jholm-recording-counter"</rel> - <rel name="Others" num="0"></rel> -</obj> - -<obj class="InfrastructureApplication" id="RDB_POOL_1"> - <attr name="Parameters" type="string">"-m RDB -g RDB -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"</attr> - <attr name="RestartParameters" type="string">" -m RDB -g RDB -r ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup -b ${TDAQ_BACKUP_PATH}/env(TDAQ_APPLICATION_NAME).backup"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Restart"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "IPCServiceApplication" "RDB" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "rdb_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="InfrastructureApplication" id="ipc-server"> - <attr name="Parameters" type="string">"-s -p ${TDAQ_PARTITION} -b -d ${TDAQ_BACKUP_PATH} -r"</attr> - <attr name="RestartParameters" type="string">"-s -p ${TDAQ_PARTITION} -b -r -d ${TDAQ_BACKUP_PATH}"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="18"> - "IPCServiceApplication" "DF" - "IPCServiceApplication" "DQM" - "IPCServiceApplication" "Histogramming" - "IPCServiceApplication" "ISRepository" - "IPCServiceApplication" "Monitoring" - "IPCServiceApplication" "PMG" - "IPCServiceApplication" "RDB" - "IPCServiceApplication" "RDB_RW" - "IPCServiceApplication" "RunCtrl" - "IPCServiceApplication" "RunCtrlStatistics" - "IPCServiceApplication" "RunParams" - "IPCServiceApplication" "Setup" - "IPCServiceApplication" "monitoring-conductor" - "IPCServiceApplication" "mts-worker" - "IPCServiceApplication" "DDC" - "IPCServiceApplication" "MTS" - "IPCServiceApplication" "CHIP" - "IPCServiceApplication" "Resources" - </rel> - <rel name="Program">"Binary" "ipc_server"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="InfrastructureApplication" id="logger"> - <attr name="Parameters" type="string">"-e mts -S * -t ${TDAQ_VERSION} -p ${TDAQ_PARTITION} -c ${LOGGER_CONNECT}"</attr> - <attr name="RestartParameters" type="string">"-e mts -S * -t ${TDAQ_VERSION} -p ${TDAQ_PARTITION} -c ${LOGGER_CONNECT}"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Restart"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="2"> - "IPCServiceApplication" "mts-worker" - "InfrastructureApplication" "ipc-server" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "lsReceiver"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="InfrastructureApplication" id="oks2coral-initial"> - <attr name="Parameters" type="string">"-c ${OKS2CORAL_CONNECT} -w ${OKS2CORAL_WORKING_SCHEMA} -r ${OKS2CORAL_TMP_DIR}"</attr> - <attr name="RestartParameters" type="string">"-c ${OKS2CORAL_CONNECT} -w ${OKS2CORAL_WORKING_SCHEMA} -r ${OKS2CORAL_TMP_DIR}"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">0</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="1"> - "IPCServiceApplication" "mts-worker-initial" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "oks2coral"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="2"> - "VariableSet" "External-environment" - "Variable" "CORAL_AUTH_PATH" - </rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="InfrastructureApplication" id="opmon"> - <attr name="Parameters" type="string">"-p ${TDAQ_PARTITION} -P /tmp -w -t"</attr> - <attr name="RestartParameters" type="string">"-p ${TDAQ_PARTITION} -P /tmp -w -t"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">0</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Restart"</attr> - <attr name="IfFailsToStart" type="enum">"Ignore"</attr> - <attr name="SegmentProcEnvVarName" type="string">""</attr> - <attr name="SegmentProcEnvVarParentName" type="string">""</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"appId"</attr> - <rel name="InitializationDependsFrom" num="2"> - "IPCServiceApplication" "RunCtrl" - "IPCServiceApplication" "Histogramming" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "opmon_monitor"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="InfrastructureTemplateApplication" id="RackCoralProxy"> - <attr name="Parameters" type="string">"-v -m -p 3320 -s 3320 env(TDAQ_CORAL_PROXY_PARENT)"</attr> - <attr name="RestartParameters" type="string">"-v -m -p 3320 -s 3320 env(TDAQ_CORAL_PROXY_PARENT)"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">0</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"FirstHost"</attr> - <attr name="SegmentProcEnvVarName" type="string">"TDAQ_CORAL_PROXY_HOST"</attr> - <attr name="SegmentProcEnvVarParentName" type="string">"TDAQ_CORAL_PROXY_PARENT"</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"runsOn"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "coralServerProxy"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="InfrastructureTemplateApplication" id="TopCoralProxy"> - <attr name="Parameters" type="string">"-v -m -p 3320 -s 40017 env(TDAQ_CORAL_PROXY_PARENT)"</attr> - <attr name="RestartParameters" type="string">"-v -m -p 3320 -s 40017 env(TDAQ_CORAL_PROXY_PARENT)"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">0</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"FirstHost"</attr> - <attr name="SegmentProcEnvVarName" type="string">"TDAQ_CORAL_PROXY_HOST"</attr> - <attr name="SegmentProcEnvVarParentName" type="string">"TDAQ_CORAL_PROXY_PARENT"</attr> - <attr name="SegmentProcEnvVarValue" type="enum">"runsOn"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "coralServerProxy"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111705"> - <attr name="Id" type="u32">1120005</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111706"> - <attr name="Id" type="u32">1120006</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111707"> - <attr name="Id" type="u32">1120007</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111708"> - <attr name="Id" type="u32">1120008</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111709"> - <attr name="Id" type="u32">1120009</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111710"> - <attr name="Id" type="u32">1120016</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111711"> - <attr name="Id" type="u32">1120017</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111712"> - <attr name="Id" type="u32">1120018</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111714"> - <attr name="Id" type="u32">1120020</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111715"> - <attr name="Id" type="u32">1120021</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111716"> - <attr name="Id" type="u32">1120022</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111717"> - <attr name="Id" type="u32">1120023</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111718"> - <attr name="Id" type="u32">1120024</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111719"> - <attr name="Id" type="u32">1120025</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111720"> - <attr name="Id" type="u32">1120032</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111721"> - <attr name="Id" type="u32">1120033</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111805"> - <attr name="Id" type="u32">1120261</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111806"> - <attr name="Id" type="u32">1120262</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111807"> - <attr name="Id" type="u32">1120263</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111808"> - <attr name="Id" type="u32">1120264</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111809"> - <attr name="Id" type="u32">1120265</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111810"> - <attr name="Id" type="u32">1120272</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111811"> - <attr name="Id" type="u32">1120273</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111812"> - <attr name="Id" type="u32">1120274</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111814"> - <attr name="Id" type="u32">1120276</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111815"> - <attr name="Id" type="u32">1120277</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111816"> - <attr name="Id" type="u32">1120278</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111817"> - <attr name="Id" type="u32">1120279</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111818"> - <attr name="Id" type="u32">1120280</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111819"> - <attr name="Id" type="u32">1120281</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="InputChannel" id="ROL-PIXEL_BARREL-00-111820"> - <attr name="Id" type="u32">1120288</attr> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> -</obj> - -<obj class="JarFile" id="DF_IS_Info.jar"> - <attr name="BinaryName" type="string">"DF_IS_Info.jar"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="DFdal.jar"> - <attr name="BinaryName" type="string">"DFdal.jar"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="ESInterface.jar"> - <attr name="BinaryName" type="string">"ESInterface.jar"</attr> - <attr name="Description" type="string">"Library for RC to ES communication and ES idl interface"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="Igui.Common.jar"> - <attr name="BinaryName" type="string">"Igui.Common.jar"</attr> - <attr name="Description" type="string">"jar for IGUI containing common classes"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="Igui.jar"> - <attr name="BinaryName" type="string">"Igui.jar"</attr> - <attr name="Description" type="string">"jar for IGUI"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="IguiCommander.jar"> - <attr name="BinaryName" type="string">"IguiCommander.jar"</attr> - <attr name="Description" type="string">"jar for IGUI idl interface"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="IguiPanels.jar"> - <attr name="BinaryName" type="string">"IguiPanels.jar"</attr> - <attr name="Description" type="string">"jar for different Igui panels"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="PmgGui.jar"> - <attr name="BinaryName" type="string">"PmgGui.jar"</attr> - <attr name="Description" type="string">"jar for the ProcessManager GUI"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="RCInfo.jar"> - <attr name="BinaryName" type="string">"RCInfo.jar"</attr> - <attr name="Description" type="string">"jar for IS information about DAQ applications, RC states, run parameters and conditions"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="RODBusydal.jar"> - <attr name="BinaryName" type="string">"RODBusydal.jar"</attr> - <attr name="Description" type="string">"jar for the Central Expert System (CES)"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="ROSModulesNP_IS.jar"> - <attr name="BinaryName" type="string">"ROSModulesNP_IS.jar"</attr> - <attr name="Description" type="string">"ROS NPReadoutModule IS java classes"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="ROSModules_IS.jar"> - <attr name="BinaryName" type="string">"ROSModules_IS.jar"</attr> - <attr name="Description" type="string">"ROS ReadoutModule IS java classes"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="RmGui.jar"> - <attr name="BinaryName" type="string">"RmGui.jar"</attr> - <attr name="Description" type="string">"jar for the ResourceManager GUI"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="RunControl.jar"> - <attr name="BinaryName" type="string">"RunControl.jar"</attr> - <attr name="Description" type="string">"jar for sending commands to RC applications"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="TTCInfo.jar"> - <attr name="BinaryName" type="string">"TTCInfo.jar"</attr> - <attr name="Description" type="string">"jar for IS information about TTC applications, run parameters and conditions"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="TriggerCommander.jar"> - <attr name="BinaryName" type="string">"TriggerCommander.jar"</attr> - <attr name="Description" type="string">"jar for the MasterTrigger and the AutoPrescaler"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="ces.jar"> - <attr name="BinaryName" type="string">"ces.jar"</attr> - <attr name="Description" type="string">"jar for the Central Expert System (CES)"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="cocadal.jar"> - <attr name="BinaryName" type="string">"cocadal.jar"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="config.jar"> - <attr name="BinaryName" type="string">"config.jar"</attr> - <attr name="Description" type="string">"contains classes providing abstract interface to database information"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="coral_auth.jar"> - <attr name="BinaryName" type="string">"coral_auth.jar"</attr> - <attr name="Description" type="string">"jar for Coral authentication"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="dal.jar"> - <attr name="BinaryName" type="string">"dal.jar"</attr> - <attr name="Description" type="string">"automatically generated dal for database classes defined by the core.schema.xml"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="ddcInfo.jar"> - <attr name="BinaryName" type="string">"ddcInfo.jar"</attr> - <attr name="Description" type="string">"jar for IS information about DCS IS types."</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="elisaJClientAPI-Helper_get.jar"> - <attr name="BinaryName" type="string">"elisaJClientAPI-Helper_get.jar"</attr> - <attr name="Description" type="string">"jar for java wrapper to use ELisA API"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="elisaJClientAPI-Helper_insert.jar"> - <attr name="BinaryName" type="string">"elisaJClientAPI-Helper_insert.jar"</attr> - <attr name="Description" type="string">"jar for java wrapper to use ELisA API"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="elisaJClientAPI.jar"> - <attr name="BinaryName" type="string">"elisaJClientAPI.jar"</attr> - <attr name="Description" type="string">"jar for java client API"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="ers.jar"> - <attr name="BinaryName" type="string">"ers.jar"</attr> - <attr name="Description" type="string">"jar for the error report system"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="esperUtils.jar"> - <attr name="BinaryName" type="string">"esperUtils.jar"</attr> - <attr name="Description" type="string">"jar containing shared esper utility classes"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="external.jar"> - <attr name="BinaryName" type="string">"external.jar"</attr> - <attr name="Description" type="string">"Collection of externals jars"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="ipc.jar"> - <attr name="BinaryName" type="string">"ipc.jar"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="is.jar"> - <attr name="BinaryName" type="string">"is.jar"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="jTm.jar"> - <attr name="BinaryName" type="string">"jTm.jar"</attr> - <attr name="Description" type="string">"jar for the jTestManager (jTm.jar)"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="jeformat.jar"> - <attr name="BinaryName" type="string">"jeformat.jar"</attr> - <attr name="Description" type="string">"jar for eformat"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="logManager.jar"> - <attr name="BinaryName" type="string">"logManager.jar"</attr> - <attr name="Description" type="string">"User interface to view the log messages"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="mdadal.jar"> - <attr name="BinaryName" type="string">"mdadal.jar"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="mts.jar"> - <attr name="BinaryName" type="string">"mts.jar"</attr> - <attr name="Description" type="string">"jar for message transfer system"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="oksconfig.jar"> - <attr name="BinaryName" type="string">"oksconfig.jar"</attr> - <attr name="Description" type="string">"implements config interface to oks using JNI"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="pmg.jar"> - <attr name="BinaryName" type="string">"pmg.jar"</attr> - <attr name="Description" type="string">"jar for the PMG commands and IS information"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="pmgsync.jar"> - <attr name="BinaryName" type="string">"pmgsync.jar"</attr> - <attr name="Description" type="string">"it implements the PMG sync mechanism via JNI"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="rdb.jar"> - <attr name="BinaryName" type="string">"rdb.jar"</attr> - <attr name="Description" type="string">"implements interface to remote database server"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="rdbconfig.jar"> - <attr name="BinaryName" type="string">"rdbconfig.jar"</attr> - <attr name="Description" type="string">"implements config interface to remote database server"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="res-info-utils.jar"> - <attr name="BinaryName" type="string">"res-info-utils.jar"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="rmgr.jar"> - <attr name="BinaryName" type="string">"rmgr.jar"</attr> - <attr name="Description" type="string">"jar for resource manager"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="JarFile" id="testdal.jar"> - <attr name="BinaryName" type="string">"testdal.jar"</attr> - <attr name="Description" type="string">"automatically generated dal for database classes defined by the test_repository.schema.xml"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">"http://"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> -</obj> - -<obj class="L1TriggerConfiguration" id="L1TrigConf"> - <attr name="CtpPartitionNumber" type="u32">0</attr> - <attr name="Lvl1PrescaleKey" type="u32">0</attr> - <attr name="Lvl1BunchGroupKey" type="u32">0</attr> - <attr name="ConfigureLvl1MenuFrom" type="enum">"DB"</attr> -</obj> - -<obj class="MIGApplication" id="DefMIG-IS"> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">10</attr> - <attr name="ProbeInterval" type="s32">25</attr> - <attr name="FullStatisticsInterval" type="s32">63</attr> - <attr name="IfError" type="enum">"Ignore"</attr> - <attr name="ControlsTTCPartitions" type="bool">0</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"FirstHost"</attr> - <attr name="LibraryPaths" type="string" num="1"> - "libMIGContainers.so" - </attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "MonInfoGatherer"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="Configurations" num="1"> - "MIGConfiguration" "TDAQ_IS_Conf" - </rel> -</obj> - -<obj class="MIGApplication" id="DefMIG-OH"> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">10</attr> - <attr name="ProbeInterval" type="s32">25</attr> - <attr name="FullStatisticsInterval" type="s32">63</attr> - <attr name="IfError" type="enum">"Ignore"</attr> - <attr name="ControlsTTCPartitions" type="bool">0</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"FirstHost"</attr> - <attr name="LibraryPaths" type="string" num="1"> - "libMIGContainers.so" - </attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "MonInfoGatherer"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="Configurations" num="1"> - "MIGConfiguration" "TDAQ_OH_Conf" - </rel> -</obj> - -<obj class="MIGApplication" id="TopMIG-IS"> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">10</attr> - <attr name="ProbeInterval" type="s32">25</attr> - <attr name="FullStatisticsInterval" type="s32">63</attr> - <attr name="IfError" type="enum">"Ignore"</attr> - <attr name="ControlsTTCPartitions" type="bool">0</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"FirstHost"</attr> - <attr name="LibraryPaths" type="string" num="1"> - "libMIGContainers.so" - </attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "MonInfoGatherer"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="Configurations" num="1"> - "MIGConfiguration" "Top_TDAQ_IS_Conf" - </rel> -</obj> - -<obj class="MIGApplication" id="TopMIG-OH"> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">10</attr> - <attr name="ProbeInterval" type="s32">25</attr> - <attr name="FullStatisticsInterval" type="s32">63</attr> - <attr name="IfError" type="enum">"Ignore"</attr> - <attr name="ControlsTTCPartitions" type="bool">0</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"FirstHost"</attr> - <attr name="LibraryPaths" type="string" num="1"> - "libMIGContainers.so" - </attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "MonInfoGatherer"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="Configurations" num="1"> - "MIGConfiguration" "Top_TDAQ_OH_Conf" - </rel> -</obj> - -<obj class="MIGConfiguration" id="TDAQ_IS_Conf"> - <attr name="ProviderRegExp" type="string">".*"</attr> - <attr name="ObjectRegExp" type="string">".*"</attr> - <rel name="SourceServers" num="1"> - "IPCServiceTemplateApplication" "DF_IS" - </rel> - <rel name="DestinationServers" num="1"> - "IPCServiceTemplateApplication" "DF_IS" - </rel> - <rel name="MatchHandlers" num="1"> - "MIGMatchHandler" "MIGDefaultHandler" - </rel> -</obj> - -<obj class="MIGConfiguration" id="TDAQ_OH_Conf"> - <attr name="ProviderRegExp" type="string">".*"</attr> - <attr name="ObjectRegExp" type="string">".*"</attr> - <rel name="SourceServers" num="1"> - "IPCServiceTemplateApplication" "DF_Histogramming" - </rel> - <rel name="DestinationServers" num="1"> - "IPCServiceTemplateApplication" "DF_Histogramming" - </rel> - <rel name="MatchHandlers" num="1"> - "MIGMatchHandler" "MIGDefaultHandler" - </rel> -</obj> - -<obj class="MIGConfiguration" id="Top_TDAQ_IS_Conf"> - <attr name="ProviderRegExp" type="string">".*"</attr> - <attr name="ObjectRegExp" type="string">".*"</attr> - <rel name="SourceServers" num="1"> - "IPCServiceTemplateApplication" "DF_IS" - </rel> - <rel name="DestinationServers" num="1"> - "IPCServiceApplication" "DF" - </rel> - <rel name="MatchHandlers" num="1"> - "MIGMatchHandler" "MIGDefaultHandler" - </rel> -</obj> - -<obj class="MIGConfiguration" id="Top_TDAQ_OH_Conf"> - <attr name="ProviderRegExp" type="string">".*"</attr> - <attr name="ObjectRegExp" type="string">".*"</attr> - <rel name="SourceServers" num="1"> - "IPCServiceTemplateApplication" "DF_Histogramming" - </rel> - <rel name="DestinationServers" num="1"> - "IPCServiceApplication" "Histogramming" - </rel> - <rel name="MatchHandlers" num="1"> - "MIGMatchHandler" "MIGDefaultHandler" - </rel> -</obj> - -<obj class="MIGMatchHandler" id="MIGDefaultHandler"> - <attr name="ObjectRegExp" type="string">".*"</attr> - <attr name="Name" type="string">"Default"</attr> - <attr name="Parameters" type="string" num="0"></attr> -</obj> - -<obj class="MasterTrigger" id="HLTSVMaster"> - <rel name="Controller">"HLTSVApplication" "HLTSV"</rel> - <rel name="TriggerModule">"" ""</rel> -</obj> - -<obj class="MemoryPool" id="ROS-Segment-1-MemoryPool"> - <attr name="Type" type="enum">"MALLOC"</attr> - <attr name="NumberOfPages" type="u32">32</attr> - <attr name="PageSize" type="u32">100</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-hltsv-00.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.172.17"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-hltsv-01.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.172.18"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-hltsv-02.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.172.19"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-13.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.38.53"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-14.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.38.52"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-15.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.38.51"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-15.cern.ch-eth2"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.147.0.15"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth2"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-15.cern.ch-vlan146"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.146.0.15"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"vlan146"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-15.cern.ch-vlan149"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.149.0.15"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"vlan149"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-16.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.38.50"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-16.cern.ch-eth2"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.147.0.16"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth2"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-16.cern.ch-vlan146"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.146.0.16"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"vlan146"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-16.cern.ch-vlan149"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.149.0.16"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"vlan149"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-17.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.38.49"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-17.cern.ch-eth2"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.147.0.17"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth2"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-17.cern.ch-vlan146"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.146.0.17"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"vlan146"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-17.cern.ch-vlan149"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.149.0.17"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"vlan149"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-18.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.38.48"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-18.cern.ch-eth2"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.147.0.18"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth2"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-18.cern.ch-vlan146"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.146.0.18"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"vlan146"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-18.cern.ch-vlan149"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.149.0.18"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"vlan149"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-19.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.38.47"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-20.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.38.46"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-net-21.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.38.45"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-onl-01.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.6.75"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-onl-02.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.6.76"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-21.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.75"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-22.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.77"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-23.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.80"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-24.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.83"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-25.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.85"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-26.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.87"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-27.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.89"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-28.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.91"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-29.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.93"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-30.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.95"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-31.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.97"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-32.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.99"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-33.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.101"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-34.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.103"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-35.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.105"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-pub-36.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"188.184.2.107"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05001.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.49"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05002.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.50"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05003.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.51"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05004.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.52"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05005.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.53"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05006.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.54"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05007.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.55"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05008.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.56"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05009.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.57"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05010.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.58"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05011.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.59"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05012.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.60"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05013.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.61"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05014.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.62"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05015.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.63"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05016.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.64"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05017.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.65"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05018.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.66"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05019.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.67"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05020.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.68"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05021.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.69"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05022.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.70"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05023.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.71"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05024.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.72"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05025.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.73"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05026.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.74"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05027.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.75"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05028.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.76"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05029.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.77"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05030.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.78"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05031.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.79"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05032.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.80"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05033.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.45"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05034.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.46"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05035.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.47"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-05036.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.162.48"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06001.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.51"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06002.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.52"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06003.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.53"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06004.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.54"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06005.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.55"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06006.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.56"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06007.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.57"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06008.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.58"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06009.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.59"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06010.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.60"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06012.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.62"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06013.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.63"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06014.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.64"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06015.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.65"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06016.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.66"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06017.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.67"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06018.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.68"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06019.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.69"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06020.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.70"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06021.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.71"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06022.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.72"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06023.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.73"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06024.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.74"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06025.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.75"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06026.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.76"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06027.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.77"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06028.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.78"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06029.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.79"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06030.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.80"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06031.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.81"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06032.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.82"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06033.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.47"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06034.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.48"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06035.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.49"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-06036.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.164.50"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07001.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.16"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07002.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.17"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07003.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.18"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07004.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.19"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07005.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.20"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07006.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.21"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07007.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.22"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07008.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.23"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07009.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.24"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07010.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.25"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07011.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.26"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07012.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.27"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07013.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.28"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07014.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.29"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07015.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.30"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07016.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.31"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07017.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.32"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07018.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.33"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07019.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.34"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07020.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.35"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07021.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.36"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07022.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.37"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07023.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.38"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07024.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.39"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07025.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.40"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07026.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.41"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07027.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.42"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07028.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.43"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07029.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.44"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07030.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.45"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="pc-tbed-tpu-07031.cern.ch-dc1"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.166.46"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"dc1"</attr> -</obj> - -<obj class="NetworkInterface" id="vm-tbed-onl-01.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.2.72"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="NetworkInterface" id="vm-tbed-onl-02.cern.ch-eth0"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <attr name="IPAddress" type="string">"10.193.2.80"</attr> - <attr name="Label" type="enum">"NONE"</attr> - <attr name="InterfaceName" type="string">"eth0"</attr> -</obj> - -<obj class="OHPublishingParameters" id="DcmOHPublishingParameters"> - <attr name="PublishInterval" type="u32">20</attr> - <attr name="NumberOfSlots" type="u32">1</attr> - <attr name="OHServer" type="string">"${TDAQ_OH_SERVER=Histogramming}"</attr> - <attr name="ROOTProvider" type="string">"${TDAQ_APPLICATION_NAME}"</attr> -</obj> - -<obj class="OHPublishingParameters" id="DefaultOHPublishingParameters"> - <attr name="PublishInterval" type="u32">5</attr> - <attr name="NumberOfSlots" type="u32">1</attr> - <attr name="OHServer" type="string">"${TDAQ_OH_SERVER=Histogramming}"</attr> - <attr name="ROOTProvider" type="string">"${TDAQ_APPLICATION_NAME}"</attr> -</obj> - -<obj class="OHPublishingParameters" id="HltpuOHPublishingParameters"> - <attr name="PublishInterval" type="u32">80</attr> - <attr name="NumberOfSlots" type="u32">1</attr> - <attr name="OHServer" type="string">"${TDAQ_OH_SERVER=Histogramming}"</attr> - <attr name="ROOTProvider" type="string">"${TDAQ_APPLICATION_NAME}"</attr> -</obj> - -<obj class="OHPublishingParameters" id="HltsvOHPublishingParameters"> - <attr name="PublishInterval" type="u32">5</attr> - <attr name="NumberOfSlots" type="u32">1</attr> - <attr name="OHServer" type="string">"Histogramming"</attr> - <attr name="ROOTProvider" type="string">"${TDAQ_APPLICATION_NAME}"</attr> -</obj> - -<obj class="OnlineSegment" id="setup"> - <attr name="T0_ProjectTag" type="string" num="1"> - "data_test" - </attr> - <rel name="Segments" num="0"></rel> - <rel name="UsesObjects" num="0"></rel> - <rel name="UsesSystems" num="0"></rel> - <rel name="Resources" num="0"></rel> - <rel name="Infrastructure" num="21"> - "InfrastructureApplication" "ipc-server" - "IPCServiceApplication" "RDB" - "IPCServiceApplication" "Setup" - "IPCServiceApplication" "RunCtrl" - "IPCServiceApplication" "MTS" - "IPCServiceApplication" "mts-worker" - "IPCServiceApplication" "RDB_RW" - "IPCServiceApplication" "ISRepository" - "IPCServiceApplication" "PMG" - "IPCServiceApplication" "RunParams" - "IPCServiceApplication" "RunCtrlStatistics" - "IPCServiceApplication" "DF" - "IPCServiceApplication" "Monitoring" - "IPCServiceApplication" "Histogramming" - "IPCServiceApplication" "monitoring-conductor" - "IPCServiceApplication" "DQM" - "IPCServiceApplication" "DDC" - "InfrastructureApplication" "RDB_POOL_1" - "IPCServiceApplication" "DFConfig" - "IPCServiceApplication" "CHIP" - "IPCServiceApplication" "Resources" - </rel> - <rel name="Applications" num="1"> - "RunControlApplication" "ResInfoProvider" - </rel> - <rel name="ProcessEnvironment" num="2"> - "VariableSet" "External-environment" - "Variable" "CORAL_AUTH_PATH" - </rel> - <rel name="IsControlledBy">"RunControlApplication" "RootController"</rel> - <rel name="DefaultTags" num="2"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-centos7-gcc8-dbg" - </rel> - <rel name="JarFiles" num="0"></rel> - <rel name="Parameters" num="2"> - "VariableSet" "SetupSegmentParameters" - "VariableSet" "External-parameters" - </rel> - <rel name="Hosts" num="0"></rel> - <rel name="TestRepositories" num="2"> - "TestSet" "OnlineInfrastructureTests" - "TestSet" "TDAQ_Tests" - </rel> - <rel name="SubTransitions" num="0"></rel> - <rel name="CompatibilityInfo" num="0"></rel> - <rel name="PmgAgent">"Binary" "pmgserver"</rel> - <rel name="InitialPartition">"Partition" "initial"</rel> - <rel name="TestHosts">"ComputerSet" "TestsHosts4TBed"</rel> -</obj> - -<obj class="OnlineSegment" id="setup-initial"> - <attr name="T0_ProjectTag" type="string" num="1"> - "data_test" - </attr> - <rel name="Segments" num="0"></rel> - <rel name="UsesObjects" num="0"></rel> - <rel name="UsesSystems" num="0"></rel> - <rel name="Resources" num="0"></rel> - <rel name="Infrastructure" num="11"> - "IPCServiceApplication" "rm-server" - "IPCServiceApplication" "MTS_IS" - "IPCServiceApplication" "mts-worker-initial" - "IPCServiceApplication" "ISRepository-initial" - "IPCServiceApplication" "RDB_INITIAL" - "IPCServiceApplication" "PMG_IS" - "IPCServiceApplication" "Setup_IS" - "IPCServiceApplication" "RunParams_IS" - "IPCServiceApplication" "CEP-initial" - "IPCServiceApplication" "LHC" - "IPCServiceApplication" "RunCtrl_IS" - </rel> - <rel name="Applications" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="IsControlledBy">"RunControlApplication" "DefaultRootController"</rel> - <rel name="DefaultTags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - </rel> - <rel name="JarFiles" num="0"></rel> - <rel name="Parameters" num="2"> - "VariableSet" "SetupSegmentParameters" - "VariableSet" "External-parameters" - </rel> - <rel name="Hosts" num="0"></rel> - <rel name="TestRepositories" num="2"> - "TestSet" "TDAQ_Tests" - "TestSet" "InitialInfrastructureTests" - </rel> - <rel name="SubTransitions" num="0"></rel> - <rel name="CompatibilityInfo" num="0"></rel> - <rel name="PmgAgent">"Binary" "pmgserver"</rel> - <rel name="InitialPartition">"Partition" "initial"</rel> - <rel name="TestHosts">"" ""</rel> -</obj> - -<obj class="PBeastSubscription" id="all"> - <attr name="ReadWhenSubscribe" type="bool">0</attr> - <attr name="Servers" type="string" num="0"></attr> - <attr name="InfoNames" type="string">""</attr> - <rel name="Types">"PBeastSubscriptionTypes" "NoHistograms"</rel> -</obj> - -<obj class="PBeastSubscription" id="all-initial"> - <attr name="ReadWhenSubscribe" type="bool">0</attr> - <attr name="Servers" type="string" num="0"></attr> - <attr name="InfoNames" type="string">""</attr> - <rel name="Types">"PBeastSubscriptionTypes" "NoHistograms-initial"</rel> -</obj> - -<obj class="PBeastSubscriptionTypes" id="NoHistograms"> - <attr name="Name" type="string">"Histogram"</attr> - <attr name="IncludeSubTypes" type="bool">1</attr> - <attr name="ExcludeThisType" type="bool">1</attr> - <attr name="CriteriaLogic" type="enum">"AND"</attr> -</obj> - -<obj class="PBeastSubscriptionTypes" id="NoHistograms-initial"> - <attr name="Name" type="string">"Histogram"</attr> - <attr name="IncludeSubTypes" type="bool">1</attr> - <attr name="ExcludeThisType" type="bool">1</attr> - <attr name="CriteriaLogic" type="enum">"AND"</attr> -</obj> - -<obj class="Partition" id="initial"> - <attr name="RepositoryRoot" type="string">""</attr> - <attr name="IPCRef" type="string">"$(TDAQ_IPC_INIT_REF)"</attr> - <attr name="DBPath" type="string">"$(TDAQ_DB_PATH)"</attr> - <attr name="DBName" type="string">"$(TDAQ_DB_DATA)"</attr> - <attr name="DBTechnology" type="enum">"oksconfig"</attr> - <attr name="LogRoot" type="string">"/logs/${TDAQ_VERSION}"</attr> - <attr name="WorkingDirectory" type="string">"/tmp/${TDAQ_VERSION}"</attr> - <attr name="RunTypes" type="string" num="0"></attr> - <rel name="Segments" num="0"></rel> - <rel name="OnlineInfrastructure">"OnlineSegment" "setup-initial"</rel> - <rel name="Disabled" num="0"></rel> - <rel name="DefaultHost">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="DefaultTags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - </rel> - <rel name="ProcessEnvironment" num="1"> - "VariableSet" "CommonEnvironment" - </rel> - <rel name="Parameters" num="2"> - "VariableSet" "CommonParameters" - "Variable" "TDAQ_VERSION" - </rel> - <rel name="DataFlowParameters">"" ""</rel> - <rel name="IS_InformationSource">"" ""</rel> - <rel name="RunTagList">"" ""</rel> - <rel name="MasterTrigger">"" ""</rel> - <rel name="TestRepositories" num="0"></rel> - <rel name="TriggerConfiguration">"" ""</rel> - <rel name="ResourcesInfoConfiguration">"" ""</rel> - <rel name="OnlineInfrastructureApplications" num="0"></rel> -</obj> - -<obj class="Partition" id="part_hlt_jholm"> - <attr name="RepositoryRoot" type="string">""</attr> - <attr name="IPCRef" type="string">"$(TDAQ_IPC_INIT_REF)"</attr> - <attr name="DBPath" type="string">"$(TDAQ_DB_PATH)"</attr> - <attr name="DBName" type="string">"$(TDAQ_DB_DATA)"</attr> - <attr name="DBTechnology" type="enum">"rdbconfig"</attr> - <attr name="LogRoot" type="string">"/tmp"</attr> - <attr name="WorkingDirectory" type="string">"/tmp/${TDAQ_PARTITION}"</attr> - <attr name="RunTypes" type="string" num="0"></attr> - <rel name="Segments" num="2"> - "Segment" "HLT" - "Segment" "ROS-Segment-1-emulated-dc" - </rel> - <rel name="OnlineInfrastructure">"OnlineSegment" "setup"</rel> - <rel name="Disabled" num="0"></rel> - <rel name="DefaultHost">"Computer" "pc-tbed-pub-32.cern.ch"</rel> - <rel name="DefaultTags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - </rel> - <rel name="ProcessEnvironment" num="1"> - "VariableSet" "CommonEnvironment" - </rel> - <rel name="Parameters" num="1"> - "VariableSet" "CommonParameters" - </rel> - <rel name="DataFlowParameters">"DFParameters" "Default-DFParameters-1"</rel> - <rel name="IS_InformationSource">"IS_InformationSources" "part_hlt_jholm-counters"</rel> - <rel name="RunTagList">"" ""</rel> - <rel name="MasterTrigger">"MasterTrigger" "HLTSVMaster"</rel> - <rel name="TestRepositories" num="0"></rel> - <rel name="TriggerConfiguration">"TriggerConfiguration" "PuDummyTriggerConfig-1"</rel> - <rel name="ResourcesInfoConfiguration">"" ""</rel> - <rel name="OnlineInfrastructureApplications" num="0"></rel> -</obj> - -<obj class="PlatformCompatibility" id="i686-slc6"> - <attr name="HW_Tag" type="enum">"i686-slc6"</attr> - <rel name="CompatibleWith" num="0"></rel> -</obj> - -<obj class="PlatformCompatibility" id="x86_64-slc6"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <rel name="CompatibleWith" num="1"> - "PlatformCompatibility" "i686-slc6" - </rel> -</obj> - -<obj class="PuDummySteering" id="HLT-Dummy-Steering"> - <attr name="libraries" type="string" num="1"> - "pudummy" - </attr> - <attr name="resultSizeDistribution" type="string">"C|1000"</attr> - <attr name="nbrHltTriggerInfo" type="u8">0</attr> - <attr name="nbrPscErrors" type="u8">0</attr> - <attr name="seed" type="s32">0</attr> - <attr name="comment" type="string">""</attr> - <rel name="steps" num="2"> - "DummyROBStep" "calo_algorithm-1" - "DummyStep" "efStep" - </rel> -</obj> - -<obj class="RM_HW_Resource" id="DBPROXY"> - <attr name="Description" type="string">"Resource locked by a db proxy Application. The whole Computer is locked for any other db proxy instance."</attr> - <attr name="MaxCopyPerPartition" type="s32">1</attr> - <attr name="MaxCopyTotal" type="s32">1</attr> - <attr name="HelpLink" type="string">"http://"</attr> - <attr name="HardwareClass" type="string">"Computer"</attr> -</obj> - -<obj class="RM_HW_Resource" id="HLTRC"> - <attr name="Description" type="string">"Resource locked by a HLTRC Application. The whole Computer is locked for any other HLTRC instance."</attr> - <attr name="MaxCopyPerPartition" type="s32">1</attr> - <attr name="MaxCopyTotal" type="s32">10</attr> - <attr name="HelpLink" type="string">"http://"</attr> - <attr name="HardwareClass" type="string">"Computer"</attr> -</obj> - -<obj class="RM_HW_Resource" id="ROS"> - <attr name="Description" type="string">"Resource locked by a ROS Application. The whole Computer is locked for any other ROS instance."</attr> - <attr name="MaxCopyPerPartition" type="s32">1</attr> - <attr name="MaxCopyTotal" type="s32">1</attr> - <attr name="HelpLink" type="string">"http://"</attr> - <attr name="HardwareClass" type="string">"Computer"</attr> -</obj> - -<obj class="RM_SW_Resource" id="ExpertControl"> - <attr name="Description" type="string">"Defines maximum number of concurrent IGUI ran in expert mode"</attr> - <attr name="MaxCopyPerPartition" type="s32">1</attr> - <attr name="MaxCopyTotal" type="s32">20</attr> - <attr name="HelpLink" type="string">"http://"</attr> -</obj> - -<obj class="RM_SW_Resource" id="HLTSV"> - <attr name="Description" type="string">"Resource locked by the DFM. Only 1 DFM allowed per partition."</attr> - <attr name="MaxCopyPerPartition" type="s32">1</attr> - <attr name="MaxCopyTotal" type="s32">1000</attr> - <attr name="HelpLink" type="string">"http://"</attr> -</obj> - -<obj class="RM_SW_Resource" id="RunControlTree"> - <attr name="Description" type="string">"Resource locked by the Root of the Run Control Tree."</attr> - <attr name="MaxCopyPerPartition" type="s32">1</attr> - <attr name="MaxCopyTotal" type="s32">1000</attr> - <attr name="HelpLink" type="string">"http://"</attr> -</obj> - -<obj class="RM_SW_Resource" id="StatusDisplay"> - <attr name="Description" type="string">"Resource locked by the IGUI when it wants to get status display permissions."</attr> - <attr name="MaxCopyPerPartition" type="s32">50</attr> - <attr name="MaxCopyTotal" type="s32">5000</attr> - <attr name="HelpLink" type="string">"http://"</attr> -</obj> - -<obj class="RM_SW_Resource" id="UserControl"> - <attr name="Description" type="string">"Defines maximum number of concurrent IGUI ran in user mode"</attr> - <attr name="MaxCopyPerPartition" type="s32">1</attr> - <attr name="MaxCopyTotal" type="s32">100</attr> - <attr name="HelpLink" type="string">"http://"</attr> -</obj> - -<obj class="ROS" id="ROS-PIXEL_BARREL-00"> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">60</attr> - <attr name="ProbeInterval" type="s32">25</attr> - <attr name="FullStatisticsInterval" type="s32">63</attr> - <attr name="IfError" type="enum">"Error"</attr> - <attr name="ControlsTTCPartitions" type="bool">0</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">10</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">0</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Restart"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Id" type="u16">0</attr> - <attr name="DataRequestDestination" type="enum">"PC"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "ReadoutApplication"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-pub-32.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> - <rel name="Contains" num="1"> - "EmulatedReadoutModule" "EMULATED-MODULE-PIXEL_BARREL-00-0" - </rel> - <rel name="MemoryConfiguration">"MemoryPool" "ROS-Segment-1-MemoryPool"</rel> - <rel name="Detector">"Detector" "PIXEL_BARREL"</rel> - <rel name="MonitoringMemoryConfiguration">"" ""</rel> - <rel name="MonitoringSchedule" num="0"></rel> - <rel name="Configuration">"ReadoutConfiguration" "ROS-Segment-1-Configuration"</rel> - <rel name="Output">"" ""</rel> - <rel name="Trigger" num="1"> - "DFTriggerIn" "ROS-Segment-1-TriggerIn" - </rel> - <rel name="MonitoringOutput">"" ""</rel> - <rel name="DebugOutput">"" ""</rel> - <rel name="PluginConfiguration">"" ""</rel> -</obj> - -<obj class="Rack" id="dummyRack"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <rel name="Nodes" num="2"> - "Computer" "pc-tbed-pub-32.cern.ch" - "Computer" "pc-tbed-pub-32.cern.ch" - </rel> - <rel name="Crates" num="0"></rel> - <rel name="LFS" num="1"> - "Computer" "pc-tbed-pub-32.cern.ch" - </rel> -</obj> - -<obj class="Rack" id="tpu-rack-05"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <rel name="Nodes" num="1"> - "ComputerSet" "tpu-rack-05" - </rel> - <rel name="Crates" num="0"></rel> - <rel name="LFS" num="1"> - "Computer" "pc-tbed-tpu-05001.cern.ch" - </rel> -</obj> - -<obj class="Rack" id="tpu-rack-06"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <rel name="Nodes" num="1"> - "ComputerSet" "tpu-rack-06" - </rel> - <rel name="Crates" num="0"></rel> - <rel name="LFS" num="1"> - "Computer" "pc-tbed-tpu-06001.cern.ch" - </rel> -</obj> - -<obj class="Rack" id="tpu-rack-07"> - <attr name="Type" type="string">""</attr> - <attr name="Location" type="string">""</attr> - <attr name="Description" type="string">""</attr> - <attr name="HelpLink" type="string">""</attr> - <attr name="InstallationRef" type="string">""</attr> - <attr name="State" type="bool">1</attr> - <rel name="Nodes" num="1"> - "ComputerSet" "tpu-rack-07" - </rel> - <rel name="Crates" num="0"></rel> - <rel name="LFS" num="1"> - "Computer" "pc-tbed-tpu-07001.cern.ch" - </rel> -</obj> - -<obj class="ReadoutConfiguration" id="ROS-Segment-1-Configuration"> - <attr name="TraceLevel" type="u32">0</attr> - <attr name="TracePackage" type="u32">0</attr> - <attr name="QueueSize" type="u32">100</attr> - <attr name="QueueUnblockOffset" type="u32">90</attr> - <attr name="NumberOfRequestHandlers" type="u32">4</attr> - <attr name="RequestTimeOut" type="u32">0</attr> - <attr name="ReleaseDelay" type="u32">0</attr> - <attr name="MonitoringScalingFactor" type="u32">10</attr> - <attr name="ThreadedConfigure" type="bool">0</attr> - <attr name="ISServerName" type="string">"DF"</attr> - <attr name="ConfigurationType" type="string">""</attr> -</obj> - -<obj class="ResourceApplication" id="oks2coralRA"> - <attr name="Lifetime" type="enum">"Boot_Shutdown"</attr> - <attr name="AllowSpontaneousExit" type="bool">0</attr> - <attr name="Parameters" type="string">"-c ${OKS2CORAL_CONNECT} -w ${OKS2CORAL_WORKING_SCHEMA} -p ${TDAQ_PARTITION} -f $(TDAQ_DB_DATA) "</attr> - <attr name="RestartParameters" type="string">"-c ${OKS2CORAL_CONNECT} -w ${OKS2CORAL_WORKING_SCHEMA} -p ${TDAQ_PARTITION} -f $(TDAQ_DB_DATA) "</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">0</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "oks2coral"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="ResourceSetAND" id="ConfigArchive"> - <rel name="Contains" num="1"> - "ResourceApplication" "oks2coralRA" - </rel> -</obj> - -<obj class="ResourceSetAND" id="PIXEL_BARREL-ROS"> - <rel name="Contains" num="1"> - "ROS" "ROS-PIXEL_BARREL-00" - </rel> -</obj> - -<obj class="ResourcesInfoConfig" id="MAIN"> - <attr name="ArchiveInCOOL" type="bool">0</attr> - <rel name="DetectorFolders" num="1"> - "ResourcesInfoDetectorConfig" "LAR" - </rel> - <rel name="GlobalFolder">"ResourcesInfoDetectorConfig" "GLOBAL"</rel> - <rel name="DefaultDetectorSubFolders" num="1"> - "ResourcesInfoDetectorFolderConfig" "Robins" - </rel> -</obj> - -<obj class="ResourcesInfoDetectorConfig" id="GLOBAL"> - <attr name="FolderName" type="string">"GLOBAL"</attr> - <attr name="SubDetectorIDs" type="u8" num="0"></attr> - <rel name="SubFolders" num="0"></rel> -</obj> - -<obj class="ResourcesInfoDetectorConfig" id="LAR"> - <attr name="FolderName" type="string">"LAR"</attr> - <attr name="SubDetectorIDs" type="u8" num="8"> - 0x41 - 0x42 - 0x43 - 0x44 - 0x45 - 0x46 - 0x47 - 0x48 - </attr> - <rel name="SubFolders" num="0"></rel> -</obj> - -<obj class="ResourcesInfoDetectorFolderConfig" id="Robins"> - <attr name="FolderName" type="string">"Robins"</attr> - <attr name="BaseClasses" type="string" num="1"> - "InputChannel" - </attr> -</obj> - -<obj class="RoIBPluginInternal" id="RoIBPluginInternal-1"> - <attr name="Libraries" type="string" num="1"> - "libsvl1internal" - </attr> - <attr name="FragmentSize" type="u32">250</attr> -</obj> - -<obj class="RunControlApplication" id="DefaultRootController"> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">50</attr> - <attr name="ProbeInterval" type="s32">20</attr> - <attr name="FullStatisticsInterval" type="s32">60</attr> - <attr name="IfError" type="enum">"Ignore"</attr> - <attr name="ControlsTTCPartitions" type="bool">0</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "rc_root_controller"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="RunControlApplication" id="ResInfoProvider"> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">10</attr> - <attr name="ProbeInterval" type="s32">0</attr> - <attr name="FullStatisticsInterval" type="s32">0</attr> - <attr name="IfError" type="enum">"Restart"</attr> - <attr name="ControlsTTCPartitions" type="bool">0</attr> - <attr name="Parameters" type="string">"-o /tmp/db/.res_info_cache"</attr> - <attr name="RestartParameters" type="string">"-o /tmp/db/.res_info_cache"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Restart"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "res_info_provider"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-01.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="RunControlApplication" id="RootController"> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">60</attr> - <attr name="ProbeInterval" type="s32">10</attr> - <attr name="FullStatisticsInterval" type="s32">0</attr> - <attr name="IfError" type="enum">"Ignore"</attr> - <attr name="ControlsTTCPartitions" type="bool">0</attr> - <attr name="Parameters" type="string">"-P Shifter -s setup -n RootController"</attr> - <attr name="RestartParameters" type="string">"-P Shifter -s setup -n RootController"</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">30</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Restart"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <rel name="InitializationDependsFrom" num="7"> - "InfrastructureApplication" "ipc-server" - "IPCServiceApplication" "RunCtrl" - "IPCServiceApplication" "RDB" - "IPCServiceApplication" "RDB_RW" - "IPCServiceApplication" "Setup" - "IPCServiceApplication" "MTS" - "IPCServiceApplication" "CHIP" - </rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "rc_root_controller"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="2"> - "VariableSet" "External-environment" - "Variable" "ROOT_CTRL_DEBUG" - </rel> - <rel name="RunsOn">"Computer" "pc-tbed-onl-02.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="RunControlApplication" id="ctp"> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">20</attr> - <attr name="ProbeInterval" type="s32">25</attr> - <attr name="FullStatisticsInterval" type="s32">63</attr> - <attr name="IfError" type="enum">"Ignore"</attr> - <attr name="ControlsTTCPartitions" type="bool">0</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Restart"</attr> - <attr name="IfFailsToStart" type="enum">"Ignore"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "rc_ctp_emulator"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"" ""</rel> - <rel name="BackupHosts" num="0"></rel> -</obj> - -<obj class="RunControlTemplateApplication" id="DefRC"> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">20</attr> - <attr name="ProbeInterval" type="s32">10</attr> - <attr name="FullStatisticsInterval" type="s32">0</attr> - <attr name="IfError" type="enum">"Error"</attr> - <attr name="ControlsTTCPartitions" type="bool">0</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">60</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"FirstHost"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "rc_controller"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="RunControlTemplateApplication" id="DefRC-NoRestart"> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">30</attr> - <attr name="ProbeInterval" type="s32">60</attr> - <attr name="FullStatisticsInterval" type="s32">0</attr> - <attr name="IfError" type="enum">"Error"</attr> - <attr name="ControlsTTCPartitions" type="bool">0</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">0</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"FirstHost"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "rc_controller"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="RunControlTemplateApplication" id="DefRC-TTC"> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">30</attr> - <attr name="ProbeInterval" type="s32">60</attr> - <attr name="FullStatisticsInterval" type="s32">0</attr> - <attr name="IfError" type="enum">"Error"</attr> - <attr name="ControlsTTCPartitions" type="bool">1</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">1</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <attr name="Instances" type="u16">1</attr> - <attr name="RunsOn" type="enum">"FirstHost"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "rc_controller"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="SFOngApplication" id="SFO-1"> - <attr name="InterfaceName" type="string">"rc/commander"</attr> - <attr name="IPCName" type="string">""</attr> - <attr name="ActionTimeout" type="s32">10</attr> - <attr name="ProbeInterval" type="s32">25</attr> - <attr name="FullStatisticsInterval" type="s32">63</attr> - <attr name="IfError" type="enum">"Error"</attr> - <attr name="ControlsTTCPartitions" type="bool">0</attr> - <attr name="Parameters" type="string">""</attr> - <attr name="RestartParameters" type="string">""</attr> - <attr name="Logging" type="bool">1</attr> - <attr name="InputDevice" type="string">""</attr> - <attr name="InitTimeout" type="u32">60</attr> - <attr name="ExitTimeout" type="u32">5</attr> - <attr name="StartIn" type="string">""</attr> - <attr name="RestartableDuringRun" type="bool">0</attr> - <attr name="IfExitsUnexpectedly" type="enum">"Error"</attr> - <attr name="IfFailsToStart" type="enum">"Error"</attr> - <rel name="InitializationDependsFrom" num="0"></rel> - <rel name="ShutdownDependsFrom" num="0"></rel> - <rel name="Program">"Binary" "SFOng_main"</rel> - <rel name="ExplicitTag">"" ""</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="RunsOn">"Computer" "pc-tbed-pub-32.cern.ch"</rel> - <rel name="BackupHosts" num="0"></rel> - <rel name="ConfigurationRules">"ConfigurationRuleBundle" "SfoConfigurationRuleBundle"</rel> - <rel name="SFOngConfiguration">"SFOngConfiguration" "SFO-Configuration-1"</rel> -</obj> - -<obj class="SFOngConfiguration" id="SFO-Configuration-1"> - <attr name="NBuffers" type="u32">20</attr> - <attr name="BufferSize_KiB" type="u32">10240</attr> - <attr name="RecordingEnabled" type="bool">0</attr> - <attr name="LumiblockEnabled" type="bool">1</attr> - <attr name="MaxLumiblockLifetime" type="u32">5</attr> - <attr name="DataDirectories" type="string" num="0"></attr> - <attr name="DirectoryMinFreeSpace" type="float">0.1</attr> - <attr name="DirectoryWritingTime_min" type="u16">60</attr> - <attr name="DirectoryChangeTime_min" type="u16">15</attr> - <attr name="MaxEventsPerFile" type="u32">0</attr> - <attr name="MaxFileSize_MiB" type="u32">2048</attr> - <attr name="CompressionAlgorithm" type="enum">"NONE"</attr> - <attr name="CompressionLevel" type="u16">1</attr> - <attr name="NInputThreads" type="u16">4</attr> - <attr name="NWorkerThreads" type="u16">6</attr> - <attr name="EventTransferTimeout_ms" type="u32">10000</attr> - <attr name="AssignPolicy" type="enum">"RoundRobin"</attr> - <attr name="StreamWeightPeriod" type="u32">5</attr> - <attr name="IOServiceWeightPeriod" type="u32">5</attr> - <attr name="Adler32MtNbThreads" type="s32">1</attr> - <attr name="Adler32MtThreshold" type="u32">30000</attr> - <attr name="ExtraParameters" type="string" num="0"></attr> - <rel name="SFOTZDBConnection">"" ""</rel> -</obj> - -<obj class="SW_ExternalPackage" id="GCC"> - <attr name="Name" type="string">"GCC"</attr> - <attr name="InstallationPath" type="string">"${GCC_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Binaries" num="4"> - "TagMapping" "x86_64-slc6-gcc8-opt-for-GCC-bin" - "TagMapping" "x86_64-slc6-gcc8-dbg-for-GCC-bin" - "TagMapping" "x86_64-centos7-gcc8-opt-for-GCC-bin" - "TagMapping" "x86_64-centos7-gcc8-dbg-for-GCC-bin" - </rel> - <rel name="SharedLibraries" num="4"> - "TagMapping" "x86_64-slc6-gcc8-opt-for-GCC-lib64" - "TagMapping" "x86_64-slc6-gcc8-dbg-for-GCC-lib64" - "TagMapping" "x86_64-centos7-gcc8-opt-for-GCC-lib64" - "TagMapping" "x86_64-centos7-gcc8-dbg-for-GCC-lib64" - </rel> -</obj> - -<obj class="SW_Repository" id="BOOST"> - <attr name="Name" type="string">"BOOST"</attr> - <attr name="InstallationPath" type="string">"${BOOST_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="COOL"> - <attr name="Name" type="string">"COOL"</attr> - <attr name="InstallationPath" type="string">"${COOL_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="CORAL"> - <attr name="Name" type="string">"CORAL"</attr> - <attr name="InstallationPath" type="string">"${CORAL_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="CPPUNIT"> - <attr name="Name" type="string">"CPPUNIT"</attr> - <attr name="InstallationPath" type="string">"${CPPUNIT_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="CoralServerRepo"> - <attr name="Name" type="string">""</attr> - <attr name="InstallationPath" type="string">"/cvmfs/sft.cern.ch/lcg/releases/LCG_95/CORAL/3_2_0"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">"CORALSVR_INST_PATH"</attr> - <rel name="Uses" num="6"> - "SW_Repository" "BOOST" - "SW_Repository" "MYSQL" - "SW_Repository" "ORACLE" - "SW_Repository" "SQLITE" - "SW_Repository" "XERCESC" - "SW_ExternalPackage" "GCC" - </rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - </rel> - <rel name="SW_Objects" num="2"> - "Binary" "coralServerProxy" - "Binary" "coralServer" - </rel> -</obj> - -<obj class="SW_Repository" id="FUTURE"> - <attr name="Name" type="string">"FUTURE"</attr> - <attr name="InstallationPath" type="string">"${FUTURE_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="GLIB"> - <attr name="Name" type="string">"GLIB"</attr> - <attr name="InstallationPath" type="string">"${GLIB_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="JAVA"> - <attr name="Name" type="string">"JAVA"</attr> - <attr name="InstallationPath" type="string">"${JAVA_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="LIBFFI"> - <attr name="Name" type="string">"LIBFFI"</attr> - <attr name="InstallationPath" type="string">"${LIBFFI_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="LIBXKBCOMMON"> - <attr name="Name" type="string">"LIBXKBCOMMON"</attr> - <attr name="InstallationPath" type="string">"${LIBXKBCOMMON_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="MYSQL"> - <attr name="Name" type="string">"MYSQL"</attr> - <attr name="InstallationPath" type="string">"${MYSQL_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="ORACLE"> - <attr name="Name" type="string">"ORACLE"</attr> - <attr name="InstallationPath" type="string">"${ORACLE_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="Online"> - <attr name="Name" type="string">"Online"</attr> - <attr name="InstallationPath" type="string">"/afs/cern.ch/atlas/project/tdaq/cmake/projects/tdaq/tdaq-99-00-00/installed"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="48"> - "share/data/AltiController//alti_is_info.xml" - "share/data/BeamSpotUtils//beamspot_is_info.xml" - "share/data/CES//ces_metrics_is_info.xml" - "share/data/CoolUtils//coolutils_is_info.xml" - "share/data/DFConfiguration/schema/dc_is_info.xml" - "share/data/DFConfiguration/schema/ros_is_info.xml" - "share/data/DFTools/schema/dfs_is_info.xml" - "share/data/ExpertSystemInterface//esint_is_info.xml" - "share/data/HLTMPPU/schema/HLTMPPU_ISInfo.schema.xml" - "share/data/Igui//Igui_is_info.xml" - "share/data/MuCalStream/schema/mucal_info.xml" - "share/data/OLC2HLT//olc2hlt_is_info.xml" - "share/data/ProcessManager//pmg_is_info.xml" - "share/data/RCDExampleModules//RCDModulesInfo.schema.xml" - "share/data/RCInfo//daq_app_is_info.xml" - "share/data/ROSCore//ROSCoreInfo.schema.xml" - "share/data/ROSDescriptor//ROSDescriptorInfo.schema.xml" - "share/data/ROSDescriptorNP//NPDescriptorInfo.schema.xml" - "share/data/ROSIO//ROSIOinfo.schema.xml" - "share/data/ROSInterruptScheduler//ROSInterruptSchedulerInfo.schema.xml" - "share/data/ROSModules//ROSModulesInfo.schema.xml" - "share/data/ROSModulesNP/schema/ROSModulesNPInfo.schema.xml" - "share/data/ROSNP2lan//NP2lanInfo.schema.xml" - "share/data/ROSQuestNP//QuestNPInfo.schema.xml" - "share/data/ROSTCPNP//TCPNPInfo.schema.xml" - "share/data/ROSTester//ROSTesterInfo.schema.xml" - "share/data/ROx//ROxInfo.schema.xml" - "share/data/ResourcesInfo//resources-info.xml" - "share/data/SFOTZ/schema/SFOTZ_ISInfo.schema.xml" - "share/data/SFOng/schema/SFOng_ISInfo.schema.xml" - "share/data/TRP//is_timepoint.schema.xml" - "share/data/TTCInfo//ttc_is_info.xml" - "share/data/asyncmsg/schema/MsgInfo_is.schema.xml" - "share/data/dcm/schema/dcm_is.schema.xml" - "share/data/ddcInfo//isddc.schema.xml" - "share/data/dqm_config/is/dqm_config_is.xml" - "share/data/dqmf/is/dqmf_is_info.xml" - "share/data/emon//emon.xml" - "share/data/hltsv/schema/hltsv_is.schema.xml" - "share/data/is//is.xml" - "share/data/ls//ls_is.xml" - "share/data/mts//mts.schema.xml" - "share/data/oh//histogram.xml" - "share/data/oks2coral//oks-archive-info.xml" - "share/data/pbeast//receiver-monitoring.xml" - "share/data/pudummy/schema/pudummy_is.schema.xml" - "share/data/siom/schema/siom_core_info.xml" - "share/data/siom/schema/siom_plugin_info.xml" - </attr> - <attr name="IGUIProperties" type="string" num="2"> - "-Digui.panel=IguiPanels.DFPanel.DFPanel" - "-Digui.panel=PmgGui.PmgISPanel" - </attr> - <attr name="InstallationPathVariableName" type="string">"TDAQ_INST_PATH"</attr> - <rel name="Uses" num="11"> - "SW_Repository" "TDAQExternal" - "SW_Repository" "TDAQ Common" - "SW_Repository" "COOL" - "SW_Repository" "CORAL" - "SW_Repository" "MYSQL" - "SW_Repository" "ORACLE" - "SW_Repository" "XERCESC" - "SW_Repository" "SQLITE" - "SW_Repository" "TBB" - "SW_Repository" "PROTOBUF" - "SW_Repository" "ZEROMQ" - </rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - </rel> - <rel name="SW_Objects" num="191"> - "Binary" "rmgr_free_resource" - "Binary" "rc_bootstrap" - "JarFile" "mts.jar" - "Binary" "rmgr_request_resources" - "Binary" "robinCheck" - "Binary" "test_tcp_port" - "Binary" "mda_stat_publish" - "Binary" "mda_eor" - "JarFile" "ers.jar" - "JarFile" "jeformat.jar" - "Binary" "np2lan" - "Binary" "rc_ctp_emulator" - "Binary" "ddc_dt_dim" - "Script" "rosmon.py" - "Binary" "test_process_id" - "Binary" "test_app_pmg" - "Binary" "rc_test_ctrl" - "Binary" "siom_application" - "Binary" "oh_raw_provider" - "JarFile" "oksconfig.jar" - "Binary" "robin_irq_catch" - "Binary" "test_rdb_writer" - "Binary" "rdb_server" - "Binary" "lsReceiver" - "Script" "log_manager" - "Binary" "slink_src" - "JarFile" "cocadal.jar" - "Binary" "rmgr_server" - "JarFile" "mdadal.jar" - "Binary" "is_ls" - "JarFile" "elisaJClientAPI.jar" - "Script" "ces" - "Binary" "rc_example_app" - "Binary" "RobinTestSuite" - "Binary" "is_rm" - "Binary" "eff_daq_splunk" - "JarFile" "is.jar" - "Binary" "eff_make_combined_graphs" - "Binary" "olc2hlt-invalidate" - "Binary" "test_is_info" - "Binary" "emon_conductor" - "Binary" "ReadoutApplication" - "Binary" "rc_sender" - "JarFile" "rmgr.jar" - "Binary" "test_host_ip" - "Binary" "oh_test_provider" - "JarFile" "RunControl.jar" - "Binary" "oh_cp" - "Binary" "emon_pull_sampler" - "Binary" "testROS" - "JarFile" "ESInterface.jar" - "Binary" "ROSTester" - "Script" "hilltrotQt.py" - "Binary" "mts2splunk_receiver" - "JarFile" "elisaJClientAPI-Helper_get.jar" - "JarFile" "IguiPanels.jar" - "JarFile" "rdb.jar" - "JarFile" "RmGui.jar" - "Binary" "robinstress" - "Binary" "eth_dst" - "Binary" "circ_generator" - "Binary" "config_dump" - "Binary" "ipc_proxy" - "Binary" "test_ipc_server" - "Binary" "rc_example_app_rm" - "Binary" "dolar_slink_src" - "Binary" "rc_dq_flag_writer" - "Binary" "pbeast_web_receiver" - "Binary" "ddc_mt_dim" - "Script" "test_host_system.sh" - "JarFile" "dal.jar" - "Binary" "test_is_server" - "JarFile" "rdbconfig.jar" - "Binary" "SFOng_main" - "Binary" "pbeast_repository_server" - "Binary" "test_rdb_server" - "Binary" "robin_slink_dst" - "Binary" "dolarscope" - "JarFile" "res-info-utils.jar" - "JarFile" "ddcInfo.jar" - "Binary" "eff_run_efficiency" - "Binary" "ddc_dt_dim_init" - "Binary" "hltpuEmu" - "Binary" "is_server" - "Binary" "oh_ls" - "JarFile" "ROSModulesNP_IS.jar" - "Binary" "testTTC2LAN" - "JarFile" "RODBusydal.jar" - "JarFile" "Igui.Common.jar" - "Script" "olc2hlt.py" - "Binary" "dcm_main" - "Binary" "HLTRC_main" - "Script" "reset-or-kill-all-gnam.py" - "Script" "jrc_example_application" - "Binary" "pmgserver" - "Script" "sfo-display.py" - "Binary" "eff_make_csv_file" - "Binary" "rc_pyrunner" - "JarFile" "coral_auth.jar" - "Script" "dal_load_is_info_files.sh" - "Binary" "dozolar_fmctest" - "Binary" "dqm_archiver" - "JarFile" "logManager.jar" - "JarFile" "pmg.jar" - "Binary" "res_info_archiver" - "Binary" "rc_root_controller" - "Script" "Igui_start" - "Binary" "emon_push_sampler" - "Binary" "test_drivers" - "Binary" "opmon_monitor" - "Binary" "oks2coral" - "Script" "change_node_state.py" - "Binary" "rc_get_running_time" - "Binary" "logTest" - "Binary" "rc_get_efficiency" - "Binary" "test_corba_server" - "JarFile" "pmgsync.jar" - "JarFile" "elisaJClientAPI-Helper_insert.jar" - "Binary" "hltsv_main" - "JarFile" "ces.jar" - "JarFile" "DFdal.jar" - "Binary" "test_computer" - "JarFile" "config.jar" - "JarFile" "ROSModules_IS.jar" - "Binary" "emon_task" - "Binary" "littlejohn" - "Binary" "coca_server" - "Binary" "test_dummy" - "JarFile" "external.jar" - "JarFile" "Igui.jar" - "Script" "start_rm_gui" - "JarFile" "IguiCommander.jar" - "Script" "dfs_server.py" - "Binary" "oh_root_provider" - "Binary" "res_info_provider" - "Binary" "rc_pixel_ready_reactor" - "Binary" "solarscope" - "Binary" "oh_graph_provider" - "Binary" "trpgui" - "JarFile" "jTm.jar" - "JarFile" "DF_IS_Info.jar" - "Binary" "wmi_server" - "Binary" "oh_rm" - "Binary" "eff_daq_efficiency" - "Binary" "slink_dst" - "Binary" "trg_dummy_master_trigger" - "Binary" "HLTMPPU_main" - "Binary" "rdb_writer" - "JarFile" "TTCInfo.jar" - "Binary" "test_program_file" - "Script" "sfo-db-gui.py" - "JarFile" "TriggerCommander.jar" - "Binary" "pmg_sleep_process" - "Binary" "pbeast_is_receiver" - "Binary" "test_app_log" - "Binary" "opmon_analyser" - "Binary" "rc_get_apps_start_order" - "Binary" "ipc_server" - "Script" "test_nic.sh" - "Binary" "rc_sound_player" - "Binary" "rc_controller" - "Binary" "oh_mv" - "JarFile" "ipc.jar" - "Binary" "quest_test" - "Script" "sfo-db-display.py" - "Binary" "dqmf_rm" - "Binary" "eth_src" - "Binary" "dal_create_db_connection_files" - "Binary" "testDCM" - "Binary" "test_pmg_agent" - "Binary" "eff_csv_splunk" - "Binary" "MonInfoGatherer" - "Binary" "mda" - "Binary" "dqmf_agent" - "Binary" "mts_ers_sender" - "Binary" "mts_worker" - "Binary" "ddc_ct_dim" - "Binary" "ROx" - "Binary" "rc_is2cool_archive" - "Script" "oks2coral_mk_tmp_file.sh" - "Binary" "robin_slink_src" - "Binary" "gnam" - "JarFile" "esperUtils.jar" - "JarFile" "PmgGui.jar" - "Script" "test_slink.py" - "Binary" "pbeast_server" - "Binary" "dozolar_setup" - "Binary" "mts_ers_receiver" - "JarFile" "testdal.jar" - "Binary" "robinscope" - "JarFile" "RCInfo.jar" - </rel> -</obj> - -<obj class="SW_Repository" id="PCRE"> - <attr name="Name" type="string">"PCRE"</attr> - <attr name="InstallationPath" type="string">"${PCRE_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="PNG"> - <attr name="Name" type="string">"PNG"</attr> - <attr name="InstallationPath" type="string">"${PNG_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="PROTOBUF"> - <attr name="Name" type="string">"PROTOBUF"</attr> - <attr name="InstallationPath" type="string">"${PROTOBUF_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="PYGRAPHICS"> - <attr name="Name" type="string">"PYGRAPHICS"</attr> - <attr name="InstallationPath" type="string">"${PYGRAPHICS_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="PYQT5"> - <attr name="Name" type="string">"PYQT5"</attr> - <attr name="InstallationPath" type="string">"${PYQT5_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="PYTHON"> - <attr name="Name" type="string">"PYTHON"</attr> - <attr name="InstallationPath" type="string">"${PYTHON_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="PYTOOLS"> - <attr name="Name" type="string">"PYTOOLS"</attr> - <attr name="InstallationPath" type="string">"${PYTOOLS_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="QT5"> - <attr name="Name" type="string">"QT5"</attr> - <attr name="InstallationPath" type="string">"${QT5_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="ROOT"> - <attr name="Name" type="string">"ROOT"</attr> - <attr name="InstallationPath" type="string">"${ROOT_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="SQLITE"> - <attr name="Name" type="string">"SQLITE"</attr> - <attr name="InstallationPath" type="string">"${SQLITE_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="TBB"> - <attr name="Name" type="string">"TBB"</attr> - <attr name="InstallationPath" type="string">"${TBB_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="TDAQ Common"> - <attr name="Name" type="string">"TDAQ Common"</attr> - <attr name="InstallationPath" type="string">"/afs/cern.ch/atlas/project/tdaq/cmake/projects/tdaq-common/tdaq-common-99-00-00/installed"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">"TDAQC_INST_PATH"</attr> - <rel name="Uses" num="5"> - "SW_Repository" "ROOT" - "SW_Repository" "BOOST" - "SW_Repository" "PYTHON" - "SW_Repository" "ZLIB" - "SW_ExternalPackage" "GCC" - </rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="TDAQExternal"> - <attr name="Name" type="string">"TDAQExternal"</attr> - <attr name="InstallationPath" type="string">"/afs/cern.ch/atlas/project/tdaq/cmake/projects/tdaq/tdaq-99-00-00/installed/external"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="XERCESC"> - <attr name="Name" type="string">"XERCESC"</attr> - <attr name="InstallationPath" type="string">"${XERCESC_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="XROOTD"> - <attr name="Name" type="string">"XROOTD"</attr> - <attr name="InstallationPath" type="string">"${XROOTD_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="ZEROMQ"> - <attr name="Name" type="string">"ZEROMQ"</attr> - <attr name="InstallationPath" type="string">"${ZEROMQ_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="SW_Repository" id="ZLIB"> - <attr name="Name" type="string">"ZLIB"</attr> - <attr name="InstallationPath" type="string">"${ZLIB_HOME}"</attr> - <attr name="PatchArea" type="string">""</attr> - <attr name="ISInfoDescriptionFiles" type="string" num="0"></attr> - <attr name="IGUIProperties" type="string" num="0"></attr> - <attr name="InstallationPathVariableName" type="string">""</attr> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="AddProcessEnvironment" num="0"></rel> - <rel name="Tags" num="4"> - "Tag" "x86_64-centos7-gcc8-opt" - "Tag" "x86_64-slc6-gcc8-dbg" - "Tag" "x86_64-centos7-gcc8-dbg" - "Tag" "x86_64-slc6-gcc8-opt" - </rel> - <rel name="SW_Objects" num="0"></rel> -</obj> - -<obj class="Script" id="Igui_start"> - <attr name="BinaryName" type="string">"Igui_start"</attr> - <attr name="Description" type="string">"IGUI start up script"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="ces"> - <attr name="BinaryName" type="string">"ces"</attr> - <attr name="Description" type="string">"Central Expert System (CES) start up script"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">"java"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="2"> - "Variable" "TDAQ_JAVA_HOME" - "Variable" "TDAQ_CES_DIR" - </rel> -</obj> - -<obj class="Script" id="change_node_state.py"> - <attr name="BinaryName" type="string">"change_node_state.py"</attr> - <attr name="Description" type="string">"Change the state in OKS of a Computer (used especially for xpu/ef)"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="dal_load_is_info_files.sh"> - <attr name="BinaryName" type="string">"dal_load_is_info_files.sh"</attr> - <attr name="Description" type="string">"load IS info files on rdb server"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="dfs_server.py"> - <attr name="BinaryName" type="string">"dfs_server.py"</attr> - <attr name="Description" type="string">"Fill the DF.DFSummary IS variable - used for monitoring data flow"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="hilltrotQt.py"> - <attr name="BinaryName" type="string">"hilltrotQt.py"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="jrc_example_application"> - <attr name="BinaryName" type="string">"jrc_example_application"</attr> - <attr name="Description" type="string">"Simple java run control application"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">"java"</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="1"> - "Variable" "TDAQ_JAVA_HOME" - </rel> -</obj> - -<obj class="Script" id="log_manager"> - <attr name="BinaryName" type="string">"log_manager"</attr> - <attr name="Description" type="string">"Log Manager start up script"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="oks2coral_mk_tmp_file.sh"> - <attr name="BinaryName" type="string">"oks2coral_mk_tmp_file.sh"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="olc2hlt.py"> - <attr name="BinaryName" type="string">"olc2hlt.py"</attr> - <attr name="Description" type="string">"Copies OLC-produced preferred luminosity to CTP for HLT use."</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="reset-or-kill-all-gnam.py"> - <attr name="BinaryName" type="string">"reset-or-kill-all-gnam.py"</attr> - <attr name="Description" type="string">"Script to reset or kill all the gnam instances in a given partition"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="rosmon.py"> - <attr name="BinaryName" type="string">"rosmon.py"</attr> - <attr name="Description" type="string">"Produces aggregate ROS monitoring histograms from the IS information"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="sfo-db-display.py"> - <attr name="BinaryName" type="string">"sfo-db-display.py"</attr> - <attr name="Description" type="string">"Display the transfer from the SFO to Tier0"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="sfo-db-gui.py"> - <attr name="BinaryName" type="string">"sfo-db-gui.py"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="sfo-display.py"> - <attr name="BinaryName" type="string">"sfo-display.py"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="start_rm_gui"> - <attr name="BinaryName" type="string">"start_rm_gui"</attr> - <attr name="Description" type="string">"ResourceManager GUI start up script"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="test_host_system.sh"> - <attr name="BinaryName" type="string">"test_host_system.sh"</attr> - <attr name="Description" type="string">"launched on the remote host and performs a number of checks, like filesystem mounts and usage, system load, logs directory presence"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="test_nic.sh"> - <attr name="BinaryName" type="string">"test_nic.sh"</attr> - <attr name="Description" type="string">"pings the closest router from this NIC"</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Script" id="test_slink.py"> - <attr name="BinaryName" type="string">"test_slink.py"</attr> - <attr name="Description" type="string">""</attr> - <attr name="Authors" type="string" num="0"></attr> - <attr name="HelpURL" type="string">""</attr> - <attr name="DefaultParameters" type="string">""</attr> - <attr name="Shell" type="string">""</attr> - <rel name="Needs" num="0"></rel> - <rel name="BelongsTo">"SW_Repository" "Online"</rel> - <rel name="Uses" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> -</obj> - -<obj class="Segment" id="HLT"> - <rel name="Segments" num="1"> - "TemplateSegment" "HLT-1" - </rel> - <rel name="UsesObjects" num="0"></rel> - <rel name="UsesSystems" num="0"></rel> - <rel name="Resources" num="4"> - "HLTSVApplication" "HLTSV" - "SFOngApplication" "SFO-1" - "MIGApplication" "TopMIG-IS" - "MIGApplication" "TopMIG-OH" - </rel> - <rel name="Infrastructure" num="2"> - "IPCServiceTemplateApplication" "DF_IS" - "IPCServiceTemplateApplication" "DF_Histogramming" - </rel> - <rel name="Applications" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="IsControlledBy">"RunControlTemplateApplication" "DefRC"</rel> - <rel name="DefaultTags" num="0"></rel> - <rel name="JarFiles" num="0"></rel> - <rel name="Parameters" num="0"></rel> - <rel name="Hosts" num="0"></rel> - <rel name="TestRepositories" num="0"></rel> - <rel name="SubTransitions" num="0"></rel> -</obj> - -<obj class="Segment" id="ROS-Segment-1-emulated-dc"> - <rel name="Segments" num="0"></rel> - <rel name="UsesObjects" num="0"></rel> - <rel name="UsesSystems" num="0"></rel> - <rel name="Resources" num="1"> - "ResourceSetAND" "PIXEL_BARREL-ROS" - </rel> - <rel name="Infrastructure" num="1"> - "IPCServiceTemplateApplication" "DefRDB" - </rel> - <rel name="Applications" num="0"></rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="IsControlledBy">"RunControlTemplateApplication" "DefRC"</rel> - <rel name="DefaultTags" num="0"></rel> - <rel name="JarFiles" num="0"></rel> - <rel name="Parameters" num="0"></rel> - <rel name="Hosts" num="0"></rel> - <rel name="TestRepositories" num="0"></rel> - <rel name="SubTransitions" num="0"></rel> -</obj> - -<obj class="Tag" id="x86_64-centos7-gcc8-dbg"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> -</obj> - -<obj class="Tag" id="x86_64-centos7-gcc8-opt"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> -</obj> - -<obj class="Tag" id="x86_64-slc6-gcc8-dbg"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> -</obj> - -<obj class="Tag" id="x86_64-slc6-gcc8-opt"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-GCC-bin"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"8.1.0/x86_64-centos7/bin"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-GCC-lib64"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"8.1.0/x86_64-centos7/lib64"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-PYTHONPATH"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-centos7-gcc8-dbg"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-ROOTSYS"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/ROOT/6.16.00/x86_64-centos7-gcc8-dbg"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-TDAQ_JAVA_HOME"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/java/8u91/x86_64-centos7-gcc8-dbg"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-TDAQ_PYTHON_PATH"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-centos7-gcc8-dbg"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-x86_64-centos7-gcc8-dbg/bin"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"x86_64-centos7-gcc8-dbg/bin"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-dbg-for-x86_64-centos7-gcc8-dbg/lib"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"x86_64-centos7-gcc8-dbg/lib"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-GCC-bin"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"8.1.0/x86_64-centos7/bin"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-GCC-lib64"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"8.1.0/x86_64-centos7/lib64"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-PYTHONPATH"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-centos7-gcc8-opt"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-ROOTSYS"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/ROOT/6.16.00/x86_64-centos7-gcc8-opt"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-TDAQ_JAVA_HOME"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/java/8u91/x86_64-centos7-gcc8-opt"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-TDAQ_PYTHON_PATH"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-centos7-gcc8-opt"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-x86_64-centos7-gcc8-opt/bin"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"x86_64-centos7-gcc8-opt/bin"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-centos7-gcc8-opt-for-x86_64-centos7-gcc8-opt/lib"> - <attr name="HW_Tag" type="enum">"x86_64-centos7"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"x86_64-centos7-gcc8-opt/lib"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-GCC-bin"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"8.1.0/x86_64-slc6/bin"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-GCC-lib64"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"8.1.0/x86_64-slc6/lib64"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-PYTHONPATH"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-slc6-gcc8-dbg"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-ROOTSYS"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/ROOT/6.16.00/x86_64-slc6-gcc8-dbg"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-TDAQ_JAVA_HOME"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/java/8u91/x86_64-slc6-gcc8-dbg"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-TDAQ_PYTHON_PATH"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-slc6-gcc8-dbg"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-x86_64-slc6-gcc8-dbg/bin"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"x86_64-slc6-gcc8-dbg/bin"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-dbg-for-x86_64-slc6-gcc8-dbg/lib"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-dbg"</attr> - <attr name="Value" type="string">"x86_64-slc6-gcc8-dbg/lib"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-GCC-bin"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"8.1.0/x86_64-slc6/bin"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-GCC-lib64"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"8.1.0/x86_64-slc6/lib64"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-PYTHONPATH"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-slc6-gcc8-opt"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-ROOTSYS"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/ROOT/6.16.00/x86_64-slc6-gcc8-opt"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-TDAQ_JAVA_HOME"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/java/8u91/x86_64-slc6-gcc8-opt"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-TDAQ_PYTHON_PATH"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/Python/2.7.15/x86_64-slc6-gcc8-opt"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-x86_64-slc6-gcc8-opt/bin"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"x86_64-slc6-gcc8-opt/bin"</attr> -</obj> - -<obj class="TagMapping" id="x86_64-slc6-gcc8-opt-for-x86_64-slc6-gcc8-opt/lib"> - <attr name="HW_Tag" type="enum">"x86_64-slc6"</attr> - <attr name="SW_Tag" type="enum">"gcc8-opt"</attr> - <attr name="Value" type="string">"x86_64-slc6-gcc8-opt/lib"</attr> -</obj> - -<obj class="TemplateSegment" id="HLT-1"> - <rel name="Segments" num="0"></rel> - <rel name="UsesObjects" num="0"></rel> - <rel name="UsesSystems" num="0"></rel> - <rel name="Resources" num="2"> - "MIGApplication" "DefMIG-IS" - "MIGApplication" "DefMIG-OH" - </rel> - <rel name="Infrastructure" num="3"> - "IPCServiceTemplateApplication" "DF_Histogramming" - "IPCServiceTemplateApplication" "DF_IS" - "IPCServiceTemplateApplication" "DefRDB" - </rel> - <rel name="Applications" num="3"> - "HLTMPPUApplication" "HLTMPPU-1" - "HLTRCApplication" "HLTRC" - "DcmApplication" "dcm" - </rel> - <rel name="ProcessEnvironment" num="0"></rel> - <rel name="IsControlledBy">"RunControlTemplateApplication" "DefRC"</rel> - <rel name="DefaultTags" num="0"></rel> - <rel name="JarFiles" num="0"></rel> - <rel name="Parameters" num="0"></rel> - <rel name="Hosts" num="0"></rel> - <rel name="TestRepositories" num="0"></rel> - <rel name="SubTransitions" num="0"></rel> - <rel name="Racks" num="1"> - "Rack" "dummyRack" - </rel> -</obj> - -<obj class="Test4CORBAServant" id="test_corba_server"> - <attr name="Timeout" type="s32">0</attr> - <attr name="Scope" type="enum" num="1"> - "functional" - </attr> - <attr name="Complexity" type="u8">0</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">0</attr> - <attr name="ServantName" type="string">"#this.IPCName"</attr> - <attr name="ServantType" type="string">"#this.InterfaceName"</attr> - <attr name="ClassName" type="class" num="1"> - "IPCServiceApplicationBase" - </attr> - <attr name="CPartitionName" type="string">"${TDAQ_PARTITION}"</attr> - <rel name="ExecDependsOnSuccess" num="2"> - "Test4Class" "TestInfrAppRunning" - "Test4Class" "TestRCAppRunning" - </rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericCORBAFailure" - </rel> -</obj> - -<obj class="Test4CORBAServant" id="test_pmg_server"> - <attr name="Timeout" type="s32">0</attr> - <attr name="Scope" type="enum" num="1"> - "any" - </attr> - <attr name="Complexity" type="u8">0</attr> - <attr name="Validity" type="s32">60</attr> - <attr name="RepeatIfUnresolved" type="bool">1</attr> - <attr name="ServantName" type="string">"AGENT_#this.UID"</attr> - <attr name="ServantType" type="string">"pmgpriv/SERVER"</attr> - <attr name="ClassName" type="class" num="1"> - "Computer" - </attr> - <attr name="CPartitionName" type="string">"initial"</attr> - <rel name="ExecDependsOnSuccess" num="0"></rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="2"> - "TestFailure" "RebootAction" - "TestFailure" "GenericCORBAFailure" - </rel> -</obj> - -<obj class="Test4Class" id="TestComputer"> - <attr name="Timeout" type="s32">15</attr> - <attr name="Scope" type="enum" num="1"> - "diagnostics" - </attr> - <attr name="Complexity" type="u8">0</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">0</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="ClassName" type="class">"Computer"</attr> - <rel name="ExecDependsOnSuccess" num="0"></rel> - <rel name="ExecDependsOnFailure" num="1"> - "Test4Class" "TestPMG" - </rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericTestFailure" - </rel> - <rel name="Runs" num="1"> - "Executable" "test_host" - </rel> -</obj> - -<obj class="Test4Class" id="TestEmulatedReadoutModule"> - <attr name="Timeout" type="s32">15</attr> - <attr name="Scope" type="enum" num="1"> - "functional" - </attr> - <attr name="Complexity" type="u8">2</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">0</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="ClassName" type="class">"EmulatedReadoutModule"</attr> - <rel name="ExecDependsOnSuccess" num="0"></rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericTestFailure" - </rel> - <rel name="Runs" num="1"> - "Executable" "test_dummy" - </rel> -</obj> - -<obj class="Test4Class" id="TestHW_Object"> - <attr name="Timeout" type="s32">15</attr> - <attr name="Scope" type="enum" num="1"> - "precondition" - </attr> - <attr name="Complexity" type="u8">2</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">0</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="ClassName" type="class">"HW_Object"</attr> - <rel name="ExecDependsOnSuccess" num="0"></rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericTestFailure" - </rel> - <rel name="Runs" num="1"> - "Executable" "test_dummy" - </rel> -</obj> - -<obj class="Test4Class" id="TestHW_System"> - <attr name="Timeout" type="s32">15</attr> - <attr name="Scope" type="enum" num="1"> - "precondition" - </attr> - <attr name="Complexity" type="u8">0</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">0</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="ClassName" type="class">"HW_System"</attr> - <rel name="ExecDependsOnSuccess" num="0"></rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericTestFailure" - </rel> - <rel name="Runs" num="1"> - "Executable" "test_dummy" - </rel> -</obj> - -<obj class="Test4Class" id="TestInfrAppRunning"> - <attr name="Timeout" type="s32">15</attr> - <attr name="Scope" type="enum" num="2"> - "functional" - "diagnostics" - </attr> - <attr name="Complexity" type="u8">0</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">0</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="ClassName" type="class">"InfrastructureBase"</attr> - <rel name="ExecDependsOnSuccess" num="0"></rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericTestFailure" - </rel> - <rel name="Runs" num="1"> - "Executable" "test_app_pmg" - </rel> -</obj> - -<obj class="Test4Class" id="TestInputChannel"> - <attr name="Timeout" type="s32">15</attr> - <attr name="Scope" type="enum" num="1"> - "functional" - </attr> - <attr name="Complexity" type="u8">0</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">0</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="ClassName" type="class">"InputChannel"</attr> - <rel name="ExecDependsOnSuccess" num="0"></rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericTestFailure" - </rel> - <rel name="Runs" num="1"> - "Executable" "test_dummy" - </rel> -</obj> - -<obj class="Test4Class" id="TestNIC"> - <attr name="Timeout" type="s32">5</attr> - <attr name="Scope" type="enum" num="1"> - "any" - </attr> - <attr name="Complexity" type="u8">1</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">0</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="ClassName" type="class">"NetworkInterface"</attr> - <rel name="ExecDependsOnSuccess" num="0"></rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericTestFailure" - </rel> - <rel name="Runs" num="1"> - "Executable" "test_nic_dummy" - </rel> -</obj> - -<obj class="Test4Class" id="TestPMG"> - <attr name="Timeout" type="s32">15</attr> - <attr name="Scope" type="enum" num="1"> - "any" - </attr> - <attr name="Complexity" type="u8">0</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">1</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="ClassName" type="class">"Computer"</attr> - <rel name="ExecDependsOnSuccess" num="1"> - "Test4CORBAServant" "test_pmg_server" - </rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericTestFailure" - </rel> - <rel name="Runs" num="1"> - "Executable" "test_dummy" - </rel> -</obj> - -<obj class="Test4Class" id="TestProgramFile"> - <attr name="Timeout" type="s32">15</attr> - <attr name="Scope" type="enum" num="1"> - "precondition" - </attr> - <attr name="Complexity" type="u8">0</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">0</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="ClassName" type="class">"SW_Object"</attr> - <rel name="ExecDependsOnSuccess" num="0"></rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericTestFailure" - </rel> - <rel name="Runs" num="1"> - "Executable" "test_program_file" - </rel> -</obj> - -<obj class="Test4Class" id="TestRCAppRunning"> - <attr name="Timeout" type="s32">15</attr> - <attr name="Scope" type="enum" num="2"> - "functional" - "diagnostics" - </attr> - <attr name="Complexity" type="u8">0</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">0</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="ClassName" type="class">"RunControlApplicationBase"</attr> - <rel name="ExecDependsOnSuccess" num="0"></rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericTestFailure" - </rel> - <rel name="Runs" num="1"> - "Executable" "test_app_pmg" - </rel> -</obj> - -<obj class="Test4Class" id="TestRCApplicationDummy"> - <attr name="Timeout" type="s32">50</attr> - <attr name="Scope" type="enum" num="1"> - "diagnostics" - </attr> - <attr name="Complexity" type="u8">3</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">0</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="ClassName" type="class">"RunControlApplicationBase"</attr> - <rel name="ExecDependsOnSuccess" num="1"> - "Test4Class" "TestRCDummy" - </rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericTestFailure" - </rel> - <rel name="Runs" num="2"> - "Executable" "test_dummy_long" - "Executable" "test_dummy_fail_0.01" - </rel> -</obj> - -<obj class="Test4Class" id="TestRCDummy"> - <attr name="Timeout" type="s32">10</attr> - <attr name="Scope" type="enum" num="1"> - "diagnostics" - </attr> - <attr name="Complexity" type="u8">3</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">0</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="ClassName" type="class">"RunControlApplicationBase"</attr> - <rel name="ExecDependsOnSuccess" num="0"></rel> - <rel name="ExecDependsOnFailure" num="1"> - "Test4Class" "TestRCAppRunning" - </rel> - <rel name="Failures" num="2"> - "TestFailure" "GenericTestFailure" - "TestFailure" "OHCleanFailure" - </rel> - <rel name="Runs" num="1"> - "Executable" "test_dummy" - </rel> -</obj> - -<obj class="Test4Object" id="TestIPCServer"> - <attr name="Timeout" type="s32">15</attr> - <attr name="Scope" type="enum" num="1"> - "functional" - </attr> - <attr name="Complexity" type="u8">0</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">0</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="OverrideTest4Class" type="bool">0</attr> - <rel name="ExecDependsOnSuccess" num="0"></rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericTestFailure" - </rel> - <rel name="Runs" num="1"> - "Executable" "test_ipc_server" - </rel> - <rel name="Objects" num="1"> - "Binary" "ipc_server" - </rel> -</obj> - -<obj class="Test4Object" id="TestISServer"> - <attr name="Timeout" type="s32">30</attr> - <attr name="Scope" type="enum" num="1"> - "functional" - </attr> - <attr name="Complexity" type="u8">2</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">1</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="OverrideTest4Class" type="bool">0</attr> - <rel name="ExecDependsOnSuccess" num="0"></rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericTestFailure" - </rel> - <rel name="Runs" num="1"> - "Executable" "test_is_server" - </rel> - <rel name="Objects" num="14"> - "IPCServiceApplication" "DF" - "IPCServiceApplication" "Histogramming" - "IPCServiceTemplateApplication" "DF_Histogramming" - "IPCServiceTemplateApplication" "DF_IS" - "IPCServiceApplication" "DDC" - "IPCServiceApplication" "DFConfig" - "IPCServiceApplication" "DQM" - "IPCServiceApplication" "MTS" - "IPCServiceApplication" "Monitoring" - "IPCServiceApplication" "PMG" - "IPCServiceApplication" "RunCtrl" - "IPCServiceApplication" "RunCtrlStatistics" - "IPCServiceApplication" "RunParams" - "IPCServiceApplication" "Setup" - </rel> -</obj> - -<obj class="Test4Object" id="TestISServer_initial"> - <attr name="Timeout" type="s32">15</attr> - <attr name="Scope" type="enum" num="1"> - "functional" - </attr> - <attr name="Complexity" type="u8">2</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">1</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="OverrideTest4Class" type="bool">0</attr> - <rel name="ExecDependsOnSuccess" num="0"></rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericTestFailure" - </rel> - <rel name="Runs" num="1"> - "Executable" "test_is_server_initial" - </rel> - <rel name="Objects" num="8"> - "IPCServiceTemplateApplication" "DF_Histogramming" - "IPCServiceTemplateApplication" "DF_IS" - "IPCServiceApplication" "LHC" - "IPCServiceApplication" "MTS_IS" - "IPCServiceApplication" "PMG_IS" - "IPCServiceApplication" "RunCtrl_IS" - "IPCServiceApplication" "RunParams_IS" - "IPCServiceApplication" "Setup_IS" - </rel> -</obj> - -<obj class="Test4Object" id="TestOHClean"> - <attr name="Timeout" type="s32">30</attr> - <attr name="Scope" type="enum" num="1"> - "any" - </attr> - <attr name="Complexity" type="u8">0</attr> - <attr name="Validity" type="s32">0</attr> - <attr name="RepeatIfUnresolved" type="bool">1</attr> - <attr name="Interactive" type="bool">0</attr> - <attr name="OverrideTest4Class" type="bool">1</attr> - <rel name="ExecDependsOnSuccess" num="0"></rel> - <rel name="ExecDependsOnFailure" num="0"></rel> - <rel name="Failures" num="1"> - "TestFailure" "GenericTestFailure" - </rel> - <rel name="Runs" num="1"> - "Executable" "test_dummy" - </rel> - <rel name="Objects" num="1"> - "CustomLifetimeApplication" "oh_clean_SOR" - </rel> -</obj> - -<obj class="TestBehavior" id="BaseApplication_BackupHosts"> - <attr name="RelationshipName" type="string">"get_backup_hosts()"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="BaseApplication_Host"> - <attr name="RelationshipName" type="string">"get_host()"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="BaseApplication_Program"> - <attr name="RelationshipName" type="string">"Program"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">1</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="ComputerSet_Contains"> - <attr name="RelationshipName" type="string">"Contains"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="Computer_Interfaces"> - <attr name="RelationshipName" type="string">"Interfaces"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="Crate_ControlHost"> - <attr name="RelationshipName" type="string">"ControlHost"</attr> - <attr name="SynchronousTesting" type="bool">1</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="Crate_Modules"> - <attr name="RelationshipName" type="string">"Modules"</attr> - <attr name="SynchronousTesting" type="bool">1</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="HW_System_HW_Objects"> - <attr name="RelationshipName" type="string">"HW_Objects"</attr> - <attr name="SynchronousTesting" type="bool">1</attr> - <attr name="StopOnError" type="bool">1</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="HW_System_HW_Systems"> - <attr name="RelationshipName" type="string">"HW_Systems"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="OnlineSegment_InitialPartition"> - <attr name="RelationshipName" type="string">"InitialPartition"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">1</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="OnlineSegment_TestHosts"> - <attr name="RelationshipName" type="string">"TestHosts"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="Partition_DefaultHost"> - <attr name="RelationshipName" type="string">"DefaultHost"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="Partition_OnlineInfrastructure"> - <attr name="RelationshipName" type="string">"OnlineInfrastructure"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="Partition_Segments"> - <attr name="RelationshipName" type="string">"Segments"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="ResourceSet_Contains"> - <attr name="RelationshipName" type="string">"Contains"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">1</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="Segment_Applications"> - <attr name="RelationshipName" type="string">"get_applications()"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="Segment_ChildSegmentControllers"> - <attr name="RelationshipName" type="string">"get_nested_segments().get_controller()"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="Segment_ChildSegmentInfrastructure"> - <attr name="RelationshipName" type="string">"get_nested_segments().get_infrastructure()"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="Segment_Hosts"> - <attr name="RelationshipName" type="string">"get_hosts()"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="Segment_Infrastructure"> - <attr name="RelationshipName" type="string">"get_infrastructure()"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="Segment_IsControlledBy"> - <attr name="RelationshipName" type="string">"get_controller()"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="Segment_Resources"> - <attr name="RelationshipName" type="string">"Resources"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="1"> - "BaseApplication" - </attr> -</obj> - -<obj class="TestBehavior" id="Segment_Segments"> - <attr name="RelationshipName" type="string">"get_nested_segments()"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="Segment_UsesObjects"> - <attr name="RelationshipName" type="string">"UsesObjects"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">1</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestBehavior" id="Segment_UsesSystems"> - <attr name="RelationshipName" type="string">"UsesSystems"</attr> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">1</attr> - <attr name="IgnoreClasses" type="class" num="0"></attr> -</obj> - -<obj class="TestFailure" id="GenericCORBAFailure"> - <attr name="ReturnCode" type="u32">183</attr> - <attr name="diagnosis" type="string">"The component cannot be contacted over IPC, or fails its internal IPC test."</attr> - <rel name="Actions" num="0"></rel> -</obj> - -<obj class="TestFailure" id="GenericTestFailure"> - <attr name="ReturnCode" type="u32">183</attr> - <attr name="diagnosis" type="string">"The component is not working correctly."</attr> - <rel name="Actions" num="0"></rel> -</obj> - -<obj class="TestFailure" id="OHCleanFailure"> - <attr name="ReturnCode" type="u32">7</attr> - <attr name="diagnosis" type="string">"The host is in such a bad shape that it has to be rebooted."</attr> - <rel name="Actions" num="0"></rel> -</obj> - -<obj class="TestFailure" id="RebootAction"> - <attr name="ReturnCode" type="u32">183</attr> - <attr name="diagnosis" type="string">"The host is in such a bad shape that it has to be rebooted."</attr> - <rel name="Actions" num="0"></rel> -</obj> - -<obj class="TestFailureAction" id="TestExtraComputer"> - <attr name="action" type="enum">"test"</attr> - <attr name="parameters" type="string">"{ Component: #this.RunsOn.UID; Scope: diagnosis }"</attr> - <attr name="timeout" type="u32">0</attr> - <rel name="Runs" num="0"></rel> -</obj> - -<obj class="TestFailureAction" id="TestVM"> - <attr name="action" type="enum">"test"</attr> - <attr name="parameters" type="string">"{ Component: vm-tbed-onl-02.cern.ch; Scope: diagnosis }"</attr> - <attr name="timeout" type="u32">0</attr> - <rel name="Runs" num="0"></rel> -</obj> - -<obj class="TestPolicy4Class" id="BaseApplicationPolicy"> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="TestOfContainer" type="enum">"last"</attr> - <attr name="Class" type="class">"BaseApplication"</attr> - <rel name="RelationsSequence" num="2"> - "TestBehavior" "BaseApplication_Host" - "TestBehavior" "BaseApplication_BackupHosts" - </rel> -</obj> - -<obj class="TestPolicy4Class" id="ComputerPolicy"> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="TestOfContainer" type="enum">"last"</attr> - <attr name="Class" type="class">"Computer"</attr> - <rel name="RelationsSequence" num="1"> - "TestBehavior" "Computer_Interfaces" - </rel> -</obj> - -<obj class="TestPolicy4Class" id="ComputerSetPolicy"> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="TestOfContainer" type="enum">"last"</attr> - <attr name="Class" type="class">"ComputerSet"</attr> - <rel name="RelationsSequence" num="1"> - "TestBehavior" "ComputerSet_Contains" - </rel> -</obj> - -<obj class="TestPolicy4Class" id="CratePolicy"> - <attr name="SynchronousTesting" type="bool">1</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="TestOfContainer" type="enum">"first"</attr> - <attr name="Class" type="class">"Crate"</attr> - <rel name="RelationsSequence" num="2"> - "TestBehavior" "Crate_ControlHost" - "TestBehavior" "Crate_Modules" - </rel> -</obj> - -<obj class="TestPolicy4Class" id="HW_SystemPolicy"> - <attr name="SynchronousTesting" type="bool">1</attr> - <attr name="StopOnError" type="bool">1</attr> - <attr name="TestOfContainer" type="enum">"last"</attr> - <attr name="Class" type="class">"HW_System"</attr> - <rel name="RelationsSequence" num="2"> - "TestBehavior" "HW_System_HW_Objects" - "TestBehavior" "HW_System_HW_Systems" - </rel> -</obj> - -<obj class="TestPolicy4Class" id="OnlineSegmentPolicy"> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">1</attr> - <attr name="TestOfContainer" type="enum">"last"</attr> - <attr name="Class" type="class">"OnlineSegment"</attr> - <rel name="RelationsSequence" num="10"> - "TestBehavior" "OnlineSegment_TestHosts" - "TestBehavior" "Segment_UsesSystems" - "TestBehavior" "Segment_UsesObjects" - "TestBehavior" "Segment_Hosts" - "TestBehavior" "Segment_IsControlledBy" - "TestBehavior" "Segment_Resources" - "TestBehavior" "Segment_Applications" - "TestBehavior" "Segment_Infrastructure" - "TestBehavior" "Segment_ChildSegmentControllers" - "TestBehavior" "Segment_ChildSegmentInfrastructure" - </rel> -</obj> - -<obj class="TestPolicy4Class" id="PartitionPolicy"> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="TestOfContainer" type="enum">"last"</attr> - <attr name="Class" type="class">"Partition"</attr> - <rel name="RelationsSequence" num="3"> - "TestBehavior" "Partition_DefaultHost" - "TestBehavior" "Partition_OnlineInfrastructure" - "TestBehavior" "Partition_Segments" - </rel> -</obj> - -<obj class="TestPolicy4Class" id="ResourceSetPolicy"> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="TestOfContainer" type="enum">"last"</attr> - <attr name="Class" type="class">"ResourceSet"</attr> - <rel name="RelationsSequence" num="1"> - "TestBehavior" "ResourceSet_Contains" - </rel> -</obj> - -<obj class="TestPolicy4Class" id="SegmentPolicy"> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="TestOfContainer" type="enum">"last"</attr> - <attr name="Class" type="class">"Segment"</attr> - <rel name="RelationsSequence" num="8"> - "TestBehavior" "Segment_UsesSystems" - "TestBehavior" "Segment_UsesObjects" - "TestBehavior" "Segment_Hosts" - "TestBehavior" "Segment_Resources" - "TestBehavior" "Segment_Segments" - "TestBehavior" "Segment_Applications" - "TestBehavior" "Segment_ChildSegmentControllers" - "TestBehavior" "Segment_ChildSegmentInfrastructure" - </rel> -</obj> - -<obj class="TestPolicy4Class" id="TemplateSegmentPolicy"> - <attr name="SynchronousTesting" type="bool">0</attr> - <attr name="StopOnError" type="bool">0</attr> - <attr name="TestOfContainer" type="enum">"last"</attr> - <attr name="Class" type="class">"TemplateSegment"</attr> - <rel name="RelationsSequence" num="4"> - "TestBehavior" "Segment_Applications" - "TestBehavior" "Segment_Hosts" - "TestBehavior" "Segment_Infrastructure" - "TestBehavior" "Segment_IsControlledBy" - </rel> -</obj> - -<obj class="TestSet" id="InitialInfrastructureTests"> - <rel name="tests" num="1"> - "Test4Object" "TestISServer_initial" - </rel> - <rel name="TestPolicies" num="0"></rel> -</obj> - -<obj class="TestSet" id="OnlineInfrastructureTests"> - <rel name="tests" num="2"> - "Test4Object" "TestISServer" - "Test4Object" "TestOHClean" - </rel> - <rel name="TestPolicies" num="0"></rel> -</obj> - -<obj class="TestSet" id="TDAQ_Tests"> - <rel name="tests" num="8"> - "Test4CORBAServant" "test_corba_server" - "Test4CORBAServant" "test_pmg_server" - "Test4Class" "TestPMG" - "Test4Class" "TestComputer" - "Test4Object" "TestIPCServer" - "Test4Class" "TestInfrAppRunning" - "Test4Class" "TestRCAppRunning" - "Test4Class" "TestNIC" - </rel> - <rel name="TestPolicies" num="10"> - "TestPolicy4Class" "PartitionPolicy" - "TestPolicy4Class" "OnlineSegmentPolicy" - "TestPolicy4Class" "SegmentPolicy" - "TestPolicy4Class" "BaseApplicationPolicy" - "TestPolicy4Class" "ComputerPolicy" - "TestPolicy4Class" "HW_SystemPolicy" - "TestPolicy4Class" "ComputerSetPolicy" - "TestPolicy4Class" "CratePolicy" - "TestPolicy4Class" "ResourceSetPolicy" - "TestPolicy4Class" "TemplateSegmentPolicy" - </rel> -</obj> - -<obj class="TriggerConfiguration" id="PuDummyTriggerConfig-1"> - <attr name="LatencyValue" type="s32">0</attr> - <rel name="l1">"L1TriggerConfiguration" "L1TrigConf"</rel> - <rel name="hlt">"PuDummySteering" "HLT-Dummy-Steering"</rel> - <rel name="TriggerDBConnection">"" ""</rel> - <rel name="DBConnections" num="0"></rel> -</obj> - -<obj class="Variable" id="AM_DB_HOST"> - <attr name="Description" type="string">"Host where MySQL DB with AM rights is running"</attr> - <attr name="Name" type="string">"AM_DB_HOST"</attr> - <attr name="Value" type="string">"pcatd84"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="AtlasSetup"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"AtlasSetup"</attr> - <attr name="Value" type="string">"/afs/cern.ch/atlas/software/dist/AtlasSetup"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="BOOST_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"BOOST_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/Boost/1.69.0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="BOOST_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"BOOST_VERSION"</attr> - <attr name="Value" type="string">"1.69.0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="COOL_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"COOL_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/COOL/3_2_0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="COOL_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"COOL_VERSION"</attr> - <attr name="Value" type="string">"320"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="CORAL_AUTH_PATH"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"CORAL_AUTH_PATH"</attr> - <attr name="Value" type="string">"/eos/user/a/atdaqeos/adm/db/.coral"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="CORAL_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"CORAL_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/CORAL/3_2_0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="CORAL_MSGFORMAT"> - <attr name="Description" type="string">"Selects format for CORAL server log messages"</attr> - <attr name="Name" type="string">"CORAL_MSGFORMAT"</attr> - <attr name="Value" type="string">"ATLAS"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="CORAL_MSGLEVEL"> - <attr name="Description" type="string">"Defines CORAL server log message level"</attr> - <attr name="Name" type="string">"CORAL_MSGLEVEL"</attr> - <attr name="Value" type="string">"info"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="CORAL_ORA_SKIP_TRANS_READONLY"> - <attr name="Description" type="string">"Toggles use of transactions in read-only access"</attr> - <attr name="Name" type="string">"CORAL_ORA_SKIP_TRANS_READONLY"</attr> - <attr name="Value" type="string">"yes"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="CORAL_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"CORAL_VERSION"</attr> - <attr name="Value" type="string">"320"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="CPPUNIT_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"CPPUNIT_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/CppUnit/1.12.1_p1"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="CPPUNIT_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"CPPUNIT_VERSION"</attr> - <attr name="Value" type="string">"1.12.1_p1"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="CS_CORAL_AUTH_PATH"> - <attr name="Description" type="string">"Accounts / passwords for DBs"</attr> - <attr name="Name" type="string">"CORAL_AUTH_PATH"</attr> - <attr name="Value" type="string">"/eos/user/a/atdaqeos/adm/db/.coral/CoralServer"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="CS_CORAL_DBLOOKUP_PATH"> - <attr name="Description" type="string">"Aliases for DBs"</attr> - <attr name="Name" type="string">"CORAL_DBLOOKUP_PATH"</attr> - <attr name="Value" type="string">"/eos/user/a/atdaqeos/adm/db/.coral/CoralServer"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="DEFAULT_HLT_CORAL_AUTH_PATH"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"CORAL_AUTH_PATH"</attr> - <attr name="Value" type="string">""</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="DEFAULT_HLT_CORAL_DBLOOKUP_PATH"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"CORAL_DBLOOKUP_PATH"</attr> - <attr name="Value" type="string">"/tmp/coral-proxy/${TDAQ_PARTITION}"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="DEF_DEBUG_STREAM"> - <attr name="Description" type="string">"Destination and filter for DEBUG messages"</attr> - <attr name="Name" type="string">"TDAQ_ERS_DEBUG"</attr> - <attr name="Value" type="string">"lstdout"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="DEF_ERROR_STREAM"> - <attr name="Description" type="string">"Destination and filter for ERROR messages"</attr> - <attr name="Name" type="string">"TDAQ_ERS_ERROR"</attr> - <attr name="Value" type="string">"throttle,lstderr,mts"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="DEF_ERS_DEBUG_LEVEL"> - <attr name="Description" type="string">"Debug level above which messages are not filtered in dbg mode"</attr> - <attr name="Name" type="string">"TDAQ_ERS_DEBUG_LEVEL"</attr> - <attr name="Value" type="string">"0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="DEF_ERS_SIGNAL_HANDLERS"> - <attr name="Description" type="string">"Install/deinstall ERS signal handlers"</attr> - <attr name="Name" type="string">"TDAQ_ERS_NO_SIGNAL_HANDLERS"</attr> - <attr name="Value" type="string">"1"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="DEF_FATAL_STREAM"> - <attr name="Description" type="string">"Destination and filter for FATAL messages"</attr> - <attr name="Name" type="string">"TDAQ_ERS_FATAL"</attr> - <attr name="Value" type="string">"lstderr,mts"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="DEF_INFO_STREAM"> - <attr name="Description" type="string">"Destination and filter for INFO messages"</attr> - <attr name="Name" type="string">"TDAQ_ERS_INFO"</attr> - <attr name="Value" type="string">"throttle,lstdout,mts"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="DEF_WARNING_STREAM"> - <attr name="Description" type="string">"Destination and filter for WARNING messages"</attr> - <attr name="Name" type="string">"TDAQ_ERS_WARNING"</attr> - <attr name="Value" type="string">"throttle,lstderr,mts"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="DF_IS_NAME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"DF_IS_SERVER_NAME"</attr> - <attr name="Value" type="string">"DF"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="DQM_IS_NAME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"DQM_IS_SERVER_NAME"</attr> - <attr name="Value" type="string">"DQM"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="ERROR_STREAM_NOMTS"> - <attr name="Description" type="string">"Destination and filter for ERROR messages"</attr> - <attr name="Name" type="string">"TDAQ_ERS_ERROR"</attr> - <attr name="Value" type="string">"lstderr"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="FATAL_STREAM_NOMTS"> - <attr name="Description" type="string">"Destination and filter for FATAL messages"</attr> - <attr name="Name" type="string">"TDAQ_ERS_FATAL"</attr> - <attr name="Value" type="string">"lstderr"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="FUTURE_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"FUTURE_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/future/0.16.0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="FUTURE_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"FUTURE_VERSION"</attr> - <attr name="Value" type="string">"0.16.0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="GCC_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"GCC_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/gcc"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="GLIB_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"GLIB_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/glib/2.52.2"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="GLIB_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"GLIB_VERSION"</attr> - <attr name="Value" type="string">"2.52.2"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="HIST_IS_NAME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"HISTO_IS_SERVER_NAME"</attr> - <attr name="Value" type="string">"Histogramming"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="INFO_STREAM_NOMTS"> - <attr name="Description" type="string">"Destination and filter for INFO messages"</attr> - <attr name="Name" type="string">"TDAQ_ERS_INFO"</attr> - <attr name="Value" type="string">"lstdout"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="INSTRUMENT"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"INSTRUMENT"</attr> - <attr name="Value" type="string">""</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="JAVA_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"JAVA_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/java/8u91"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="JAVA_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"JAVA_VERSION"</attr> - <attr name="Value" type="string">"8u91"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="LCG_INST_PATH"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"LCG_INST_PATH"</attr> - <attr name="Value" type="string">"/cvmfs/sft.cern.ch/lcg/releases"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="LIBFFI_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"LIBFFI_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/libffi/3.2.1"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="LIBFFI_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"LIBFFI_VERSION"</attr> - <attr name="Value" type="string">"3.2.1"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="LIBXKBCOMMON_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"LIBXKBCOMMON_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/libxkbcommon/0.7.1"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="LIBXKBCOMMON_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"LIBXKBCOMMON_VERSION"</attr> - <attr name="Value" type="string">"0.7.1"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="LOGGER_CONNECT"> - <attr name="Description" type="string">"DB connect string for logger app"</attr> - <attr name="Name" type="string">"LOGGER_CONNECT"</attr> - <attr name="Value" type="string">"oracle://INTR/atlas_log_messg"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="MON_IS_NAME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"MON_IS_SERVER_NAME"</attr> - <attr name="Value" type="string">"Monitoring"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="MRS_AUDIO_PLAYER"> - <attr name="Description" type="string">"Binary used to play .au audio files."</attr> - <attr name="Name" type="string">"TDAQ_MRS_AUDIO_PLAYER"</attr> - <attr name="Value" type="string">"/usr/bin/play"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="MTS_ERS_STREAM"> - <attr name="Description" type="string">"makes ERS to load MTS stream"</attr> - <attr name="Name" type="string">"TDAQ_ERS_STREAM_LIBS"</attr> - <attr name="Value" type="string">"mtsStreams"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="MYSQL_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"MYSQL_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/mysql/5.7.20"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="MYSQL_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"MYSQL_VERSION"</attr> - <attr name="Value" type="string">"5.7.20"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="OKS2CORAL_CONNECT"> - <attr name="Description" type="string">"Site specific database connection string"</attr> - <attr name="Name" type="string">"OKS2CORAL_CONNECT"</attr> - <attr name="Value" type="string">"oracle://INTR/tdaq_dev_backup_w ${OKS2CORAL_PARAMS}"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="OKS2CORAL_PARAMS"> - <attr name="Description" type="string">"Extra oks2coral parameters to define schema version and max numbers of inserted rows"</attr> - <attr name="Name" type="string">"OKS2CORAL_PARAMS"</attr> - <attr name="Value" type="string">"-x 512 -X 1024"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="OKS2CORAL_TMP_DIR"> - <attr name="Description" type="string">"Where oks2coral saves temporary files for archiving. It mush be either a directory in a common file system, or oks2coral binary and oks2coral_mk_tmp_file script shall be run on the same host. Never set this value to /tmp!"</attr> - <attr name="Name" type="string">"OKS2CORAL_TMP_DIR"</attr> - <attr name="Value" type="string">"/eos/user/a/atdaqeos/adm/db/v19/daq/.oks2coral_cache"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="OKS2CORAL_WORKING_SCHEMA"> - <attr name="Description" type="string">"Site specific database working schema (i.e. user that is owner of relational database tables)"</attr> - <attr name="Name" type="string">"OKS2CORAL_WORKING_SCHEMA"</attr> - <attr name="Value" type="string">"atlas_oks_archive"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="OKS_DB_ROOT"> - <attr name="Description" type="string">"Path to get oks files which are not part of standard DB area."</attr> - <attr name="Name" type="string">"OKS_DB_ROOT"</attr> - <attr name="Value" type="string">"${TDAQ_INST_PATH}/share/data"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="OKS_VERBOSE"> - <attr name="Description" type="string">"Controls verbosity of OKS kernel. "no" means no verbosity, any other value means verbose output."</attr> - <attr name="Name" type="string">"OKS_KERNEL_VERBOSE"</attr> - <attr name="Value" type="string">"1"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="ORACLE_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"ORACLE_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/oracle/11.2.0.3.0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="ORACLE_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"ORACLE_VERSION"</attr> - <attr name="Value" type="string">"11.2.0.3.0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="ORBmaxServerThreadPoolSize"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"ORBmaxServerThreadPoolSize"</attr> - <attr name="Value" type="string">"10"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="ORBscanGranularity"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"ORBscanGranularity"</attr> - <attr name="Value" type="string">"0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="ORBthreadPerConnectionPolicy"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"ORBthreadPerConnectionPolicy"</attr> - <attr name="Value" type="string">"0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PBEAST_MERGED_REPOSITORY"> - <attr name="Description" type="string">"The P-BEAST repository for merger files (shared by merger and server applications)"</attr> - <attr name="Name" type="string">"PBEAST_MERGED_REPOSITORY"</attr> - <attr name="Value" type="string">"/data/pbeast-merged"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PBEAST_RECEIVER_IPC_TIMEOUT"> - <attr name="Description" type="string">"Timeout for P-BEAST receiver application used for communication with IS servers (subscribe/unsubscribe requests) and IPC.
It should be kept small, since it delays writing P-BEAST data on shutdown."</attr> - <attr name="Name" type="string">"TDAQ_IPC_TIMEOUT"</attr> - <attr name="Value" type="string">"5000"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PBEAST_REPOSITORY"> - <attr name="Description" type="string">"The P-BEAST repository is shared by P-BEAST recevers and merger applications"</attr> - <attr name="Name" type="string">"PBEAST_REPOSITORY"</attr> - <attr name="Value" type="string">"/data/pbeast"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PBEAST_SERVER_IPC_TIMEOUT"> - <attr name="Description" type="string">"Timeout for P-BEAST server application used for communication with P-BEAST servers and receivers.
It should be kept big enough (minutes), since the servers can be quite slow for large data sets."</attr> - <attr name="Name" type="string">"TDAQ_IPC_TIMEOUT"</attr> - <attr name="Value" type="string">"200000"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PCRE_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PCRE_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/pcre/8.38"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PCRE_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PCRE_VERSION"</attr> - <attr name="Value" type="string">"8.38"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PMG_IS_NAME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PMG_IS_SERVER_NAME"</attr> - <attr name="Value" type="string">"PMG"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PNG_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PNG_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/png/1.6.17"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PNG_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PNG_VERSION"</attr> - <attr name="Value" type="string">"1.6.17"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="POOL_RDB_IPC_TIMEOUT"> - <attr name="Description" type="string">"IPC communication timeout for segment RDB server"</attr> - <attr name="Name" type="string">"TDAQ_IPC_TIMEOUT"</attr> - <attr name="Value" type="string">"13000"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PROTOBUF_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PROTOBUF_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/protobuf/2.5.0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PROTOBUF_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PROTOBUF_VERSION"</attr> - <attr name="Value" type="string">"2.5.0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PYGRAPHICS_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PYGRAPHICS_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/pygraphics/2.0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PYGRAPHICS_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PYGRAPHICS_VERSION"</attr> - <attr name="Value" type="string">"2.0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PYQT5_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PYQT5_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/pyqt5/5.11.2"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PYQT5_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PYQT5_VERSION"</attr> - <attr name="Value" type="string">"5.11.2"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PYTHONPATH"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PYTHONPATH"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/Python/2.7.15"</attr> - <rel name="TagValues" num="4"> - "TagMapping" "x86_64-slc6-gcc8-opt-for-PYTHONPATH" - "TagMapping" "x86_64-slc6-gcc8-dbg-for-PYTHONPATH" - "TagMapping" "x86_64-centos7-gcc8-opt-for-PYTHONPATH" - "TagMapping" "x86_64-centos7-gcc8-dbg-for-PYTHONPATH" - </rel> -</obj> - -<obj class="Variable" id="PYTHON_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PYTHON_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/Python/2.7.15"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PYTHON_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PYTHON_VERSION"</attr> - <attr name="Value" type="string">"2.7.15"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PYTOOLS_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PYTOOLS_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/pytools/2.0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="PYTOOLS_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"PYTOOLS_VERSION"</attr> - <attr name="Value" type="string">"2.0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="QT5_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"QT5_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/Qt5/5.11.1"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="QT5_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"QT5_VERSION"</attr> - <attr name="Value" type="string">"5.11.1"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="RC_IS_NAME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"RC_IS_SERVER_NAME"</attr> - <attr name="Value" type="string">"RunCtrl"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="ROOTSYS"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"ROOTSYS"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/ROOT/6.16.00"</attr> - <rel name="TagValues" num="4"> - "TagMapping" "x86_64-slc6-gcc8-opt-for-ROOTSYS" - "TagMapping" "x86_64-slc6-gcc8-dbg-for-ROOTSYS" - "TagMapping" "x86_64-centos7-gcc8-opt-for-ROOTSYS" - "TagMapping" "x86_64-centos7-gcc8-dbg-for-ROOTSYS" - </rel> -</obj> - -<obj class="Variable" id="ROOT_CTRL_DEBUG"> - <attr name="Description" type="string">"Debug level above which messages are not filtered in dbg mode"</attr> - <attr name="Name" type="string">"TDAQ_ERS_DEBUG_LEVEL"</attr> - <attr name="Value" type="string">"0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="ROOT_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"ROOT_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/ROOT/6.16.00"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="ROOT_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"ROOT_VERSION"</attr> - <attr name="Value" type="string">"6.16.00"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="RP_IS_NAME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"RUN_PARAMS_IS_SERVER_NAME"</attr> - <attr name="Value" type="string">"RunParams"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="SETUP_IS_SERVER_NAME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"SETUP_IS_SERVER_NAME"</attr> - <attr name="Value" type="string">"Setup"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="SQLITE_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"SQLITE_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/sqlite/3210000"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="SQLITE_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"SQLITE_VERSION"</attr> - <attr name="Value" type="string">"3210000"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TBB_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"TBB_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/tbb/2019_U1"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TBB_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"TBB_VERSION"</attr> - <attr name="Value" type="string">"2019_U1"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TBED_CORAL_SERVER_HOST"> - <attr name="Description" type="string">"Name of the host where CoralServer runs"</attr> - <attr name="Name" type="string">"TBED_CORAL_SERVER_HOST"</attr> - <attr name="Value" type="string">"vm-tbed-onl-01.cern.ch"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQDB4Expert"> - <attr name="Description" type="string">"TDAQ_DB variable for expert system."</attr> - <attr name="Name" type="string">"TDAQ_DB"</attr> - <attr name="Value" type="string">"rdbconfig:RDB_RW"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_AM_AUTHORIZATION"> - <attr name="Description" type="string">"Controls behavior of the AM service. Allowed values "on/off". "</attr> - <attr name="Name" type="string">"TDAQ_AM_AUTHORIZATION"</attr> - <attr name="Value" type="string">"on"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_AM_SERVER_HOST"> - <attr name="Description" type="string">"Defines the host on which the AM server is running."</attr> - <attr name="Name" type="string">"TDAQ_AM_SERVER_HOST"</attr> - <attr name="Value" type="string">"lnxatd80.cern.ch"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_AM_SERVER_PORT"> - <attr name="Description" type="string">"Defines the port on which the AM server is listening."</attr> - <attr name="Name" type="string">"TDAQ_AM_SERVER_PORT"</attr> - <attr name="Value" type="string">"20000"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_BACKUP_PATH"> - <attr name="Description" type="string">"Path where server backup files are kept"</attr> - <attr name="Name" type="string">"TDAQ_BACKUP_PATH"</attr> - <attr name="Value" type="string">"${TDAQ_LOGS_PATH}"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_CES_DIR"> - <attr name="Description" type="string">"Defines the directory used by CES to look for configuration files"</attr> - <attr name="Name" type="string">"TDAQ_CES_DIR"</attr> - <attr name="Value" type="string">"${TDAQ_INST_PATH}/share/data/CES"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_DQM_ALGO_INST_PATH"> - <attr name="Description" type="string">"Installation path for the AttlasTrigger project of the Oflline release"</attr> - <attr name="Name" type="string">"ATLAS_TRIGGER_INST_PATH"</attr> - <attr name="Value" type="string">"/afs/cern.ch/atlas/software/builds/nightlies/dev/AtlasTrigger"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_DQM_ALGO_PATCH_INST_PATH"> - <attr name="Description" type="string">"Installation path for the patched version of the Offline release"</attr> - <attr name="Name" type="string">"OFFLINE_PATCH_INST_PATH"</attr> - <attr name="Value" type="string">"/afs/cern.ch/atlas/software/builds/AtlasTier0"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_DQM_ALGO_PATCH_VERSION"> - <attr name="Description" type="string">"Patched Offline release version"</attr> - <attr name="Name" type="string">"OFFLINE_PATCH_VERSION"</attr> - <attr name="Value" type="string">"15.0.0.3"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_DQM_ALGO_VERSION"> - <attr name="Description" type="string">"Offline release version to get DQM algorithms"</attr> - <attr name="Name" type="string">"OFFLINE_VERSION"</attr> - <attr name="Value" type="string">"latest_copied_release"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_ERS_TIMESTAMP_PRECISION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"TDAQ_ERS_TIMESTAMP_PRECISION"</attr> - <attr name="Value" type="string">"MICRO"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_ERS_VERBOSITY"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">""</attr> - <attr name="Value" type="string">"3"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_ERS_VERBOSITY_LEVEL"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"TDAQ_ERS_VERBOSITY_LEVEL"</attr> - <attr name="Value" type="string">"3"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_JAVA_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"TDAQ_JAVA_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/java/8u91"</attr> - <rel name="TagValues" num="4"> - "TagMapping" "x86_64-slc6-gcc8-opt-for-TDAQ_JAVA_HOME" - "TagMapping" "x86_64-slc6-gcc8-dbg-for-TDAQ_JAVA_HOME" - "TagMapping" "x86_64-centos7-gcc8-opt-for-TDAQ_JAVA_HOME" - "TagMapping" "x86_64-centos7-gcc8-dbg-for-TDAQ_JAVA_HOME" - </rel> -</obj> - -<obj class="Variable" id="TDAQ_LOGS_ARCHIVE_PATH"> - <attr name="Description" type="string">"Path where the archives of the logs are kept"</attr> - <attr name="Name" type="string">"TDAQ_LOGS_ARCHIVE_PATH"</attr> - <attr name="Value" type="string">"${TDAQ_LOGS_ROOT}/archive"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_OPMON_OPTIONS"> - <attr name="Description" type="string">"Options to be passed to command line of the opmon application."</attr> - <attr name="Name" type="string">"TDAQ_OPMON_OPTIONS"</attr> - <attr name="Value" type="string">"-w -u 1 -i 5000"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_PMG_MANIFEST_DIR"> - <attr name="Description" type="string">"Where PMG server creates manifest files and fifos. Ideally should be unique per user, release and IPC domain."</attr> - <attr name="Name" type="string">"TDAQ_PMG_MANIFEST_AND_FIFOS_DIR"</attr> - <attr name="Value" type="string">"/tmp/ProcessManager/nightly"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_PYTHON_PATH"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"TDAQ_PYTHON_PATH"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/Python/2.7.15"</attr> - <rel name="TagValues" num="4"> - "TagMapping" "x86_64-slc6-gcc8-opt-for-TDAQ_PYTHON_PATH" - "TagMapping" "x86_64-slc6-gcc8-dbg-for-TDAQ_PYTHON_PATH" - "TagMapping" "x86_64-centos7-gcc8-opt-for-TDAQ_PYTHON_PATH" - "TagMapping" "x86_64-centos7-gcc8-dbg-for-TDAQ_PYTHON_PATH" - </rel> -</obj> - -<obj class="Variable" id="TDAQ_RDB_THREADING"> - <attr name="Description" type="string">"sets the number of CORBA threads for incoming requests for the server"</attr> - <attr name="Name" type="string">"TDAQ_RDB_THREADING"</attr> - <attr name="Value" type="string">"-ORBmaxServerThreadPoolSize 16"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_RESULTS_FILE_NAME"> - <attr name="Description" type="string">"File name of the partition independent timing test results file name"</attr> - <attr name="Name" type="string">"TDAQ_RESULTS_FILE_NAME"</attr> - <attr name="Value" type="string">"timing_test_result_list.out"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_RESULTS_LOGS_PATH"> - <attr name="Description" type="string">"Path where the partition independent timing test results log file is stored"</attr> - <attr name="Name" type="string">"TDAQ_RESULTS_LOGS_PATH"</attr> - <attr name="Value" type="string">"${TDAQ_LOGS_ROOT}/results"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_RLOGIN_OPTS"> - <attr name="Description" type="string">"Options passed to remote login command (e.g. ssh), used in starting of PMG agents and in test_computer. May be installation-specific."</attr> - <attr name="Name" type="string">"TDAQ_RLOGIN_OPTS"</attr> - <attr name="Value" type="string">"-nfx"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_RM_CONFIG"> - <attr name="Description" type="string">"Configuration database for the Resource Manager server"</attr> - <attr name="Name" type="string">"TDAQ_RM_CONFIG"</attr> - <attr name="Value" type="string">"oksconfig:daq/sw/rm-config.data.xml"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_ROOT_CTRL_EXT"> - <attr name="Description" type="string">"sets extra clips extensions for Root Controller (e.g. run number service)"</attr> - <attr name="Name" type="string">"TDAQ_CLIPSSERVER_EXTENSIONS"</attr> - <attr name="Value" type="string">"RN"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_RUNNUMBER_SRV"> - <attr name="Description" type="string">"Sets connection path to run number DB"</attr> - <attr name="Name" type="string">"TDAQ_RUN_NUMBER_CONNECT"</attr> - <attr name="Value" type="string">"nightly_check:atlas_oks_archive:oracle://INTR/tdaq_dev_backup_w"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TDAQ_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"TDAQ_VERSION"</attr> - <attr name="Value" type="string">"tdaq-99-00-00"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TEMPLATE_RDB_IPC_TIMEOUT"> - <attr name="Description" type="string">"IPC communication timeout for segment RDB server"</attr> - <attr name="Name" type="string">"TDAQ_IPC_TIMEOUT"</attr> - <attr name="Value" type="string">"12000"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="TNS_ADMIN"> - <attr name="Description" type="string">"Needed to access oracle database from COOL/CORAL plugins. Should be set according to the local Oracle installation."</attr> - <attr name="Name" type="string">"TNS_ADMIN"</attr> - <attr name="Value" type="string">"/eos/project/o/oracle/public/admin"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="WARNING_STREAM_NOMTS"> - <attr name="Description" type="string">"Destination and filter for WARNING messages"</attr> - <attr name="Name" type="string">"TDAQ_ERS_WARNING"</attr> - <attr name="Value" type="string">"lstderr"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="XERCESC_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"XERCESC_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/XercesC/3.1.3"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="XERCESC_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"XERCESC_VERSION"</attr> - <attr name="Value" type="string">"3.1.3"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="XROOTD_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"XROOTD_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/xrootd/4.8.4"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="XROOTD_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"XROOTD_VERSION"</attr> - <attr name="Value" type="string">"4.8.4"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="ZEROMQ_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"ZEROMQ_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/zeromq/4.2.5"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="ZEROMQ_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"ZEROMQ_VERSION"</attr> - <attr name="Value" type="string">"4.2.5"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="ZLIB_HOME"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"ZLIB_HOME"</attr> - <attr name="Value" type="string">"${LCG_INST_PATH}/LCG_95/zlib/1.2.11"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="Variable" id="ZLIB_VERSION"> - <attr name="Description" type="string">""</attr> - <attr name="Name" type="string">"ZLIB_VERSION"</attr> - <attr name="Value" type="string">"1.2.11"</attr> - <rel name="TagValues" num="0"></rel> -</obj> - -<obj class="VariableSet" id="AM_Environment"> - <attr name="Description" type="string">"Set of environment variables to configure the use of the AM."</attr> - <rel name="Contains" num="3"> - "Variable" "TDAQ_AM_AUTHORIZATION" - "Variable" "TDAQ_AM_SERVER_HOST" - "Variable" "TDAQ_AM_SERVER_PORT" - </rel> -</obj> - -<obj class="VariableSet" id="CommonEnvironment"> - <attr name="Description" type="string">"Environment that to be passed to all applications in a partition. It can be alternated by a user for concrete partition."</attr> - <rel name="Contains" num="9"> - "Variable" "DEF_ERS_DEBUG_LEVEL" - "Variable" "DEF_DEBUG_STREAM" - "Variable" "DEF_INFO_STREAM" - "Variable" "DEF_WARNING_STREAM" - "Variable" "DEF_ERROR_STREAM" - "Variable" "DEF_FATAL_STREAM" - "Variable" "DEF_ERS_SIGNAL_HANDLERS" - "Variable" "TNS_ADMIN" - "Variable" "MTS_ERS_STREAM" - </rel> -</obj> - -<obj class="VariableSet" id="CommonParameters"> - <attr name="Description" type="string">"Parameters which shall be defined for any partition. It can be copied and alternated by a user for concrete partition."</attr> - <rel name="Contains" num="11"> - "Variable" "TDAQ_LOGS_ARCHIVE_PATH" - "Variable" "TDAQ_RESULTS_FILE_NAME" - "Variable" "TDAQ_RESULTS_LOGS_PATH" - "Variable" "TDAQ_BACKUP_PATH" - "Variable" "TDAQ_DQM_ALGO_INST_PATH" - "Variable" "TDAQ_DQM_ALGO_PATCH_INST_PATH" - "Variable" "TDAQ_DQM_ALGO_VERSION" - "Variable" "TDAQ_DQM_ALGO_PATCH_VERSION" - "Variable" "TBED_CORAL_SERVER_HOST" - "Variable" "TDAQ_RDB_THREADING" - "Variable" "TDAQ_VERSION" - </rel> -</obj> - -<obj class="VariableSet" id="External-environment"> - <attr name="Description" type="string">"a set of environment that to be passed to Applicaitons which need access to external packages like COOL, ROOT, CORAL"</attr> - <rel name="Contains" num="1"> - "Variable" "ROOTSYS" - </rel> -</obj> - -<obj class="VariableSet" id="External-parameters"> - <attr name="Description" type="string">"these parameters are used to define values for other objects (e.g. Environment), and should be associated with Partition or Segment objects"</attr> - <rel name="Contains" num="30"> - "Variable" "BOOST_HOME" - "Variable" "BOOST_VERSION" - "Variable" "COOL_HOME" - "Variable" "CORAL_HOME" - "Variable" "MYSQL_HOME" - "Variable" "ORACLE_HOME" - "Variable" "ROOT_HOME" - "Variable" "XERCESC_HOME" - "Variable" "COOL_VERSION" - "Variable" "CORAL_VERSION" - "Variable" "MYSQL_VERSION" - "Variable" "ORACLE_VERSION" - "Variable" "XERCESC_VERSION" - "Variable" "ROOT_VERSION" - "Variable" "BOOST_VERSION" - "Variable" "BOOST_HOME" - "Variable" "PYTHON_VERSION" - "Variable" "PYTHON_HOME" - "Variable" "LCG_INST_PATH" - "Variable" "SQLITE_HOME" - "Variable" "SQLITE_VERSION" - "Variable" "TBB_HOME" - "Variable" "TBB_VERSION" - "Variable" "GCC_HOME" - "Variable" "PROTOBUF_HOME" - "Variable" "PROTOBUF_VERSION" - "Variable" "ZLIB_HOME" - "Variable" "ZLIB_VERSION" - "Variable" "ZEROMQ_HOME" - "Variable" "ZEROMQ_VERSION" - </rel> -</obj> - -<obj class="VariableSet" id="SetupSegmentParameters"> - <attr name="Description" type="string">"Variables used to parametrize Applicaitons in Setup segment"</attr> - <rel name="Contains" num="17"> - "Variable" "RP_IS_NAME" - "Variable" "RC_IS_NAME" - "Variable" "PMG_IS_NAME" - "Variable" "MON_IS_NAME" - "Variable" "DF_IS_NAME" - "Variable" "AM_DB_HOST" - "Variable" "OKS2CORAL_CONNECT" - "Variable" "OKS2CORAL_WORKING_SCHEMA" - "Variable" "OKS2CORAL_PARAMS" - "Variable" "TDAQ_OPMON_OPTIONS" - "Variable" "HIST_IS_NAME" - "Variable" "DQM_IS_NAME" - "Variable" "OKS2CORAL_TMP_DIR" - "Variable" "LOGGER_CONNECT" - "Variable" "SETUP_IS_SERVER_NAME" - "Variable" "PBEAST_REPOSITORY" - "Variable" "PBEAST_MERGED_REPOSITORY" - </rel> -</obj> - -</oks-data>