otsdaq  v2_00_00
RegisterConfiguration.cpp
1 /*
2  * RegisterConfiguration.cpp
3  *
4  * Created on: Jul 24, 2015
5  * Author: parilla
6  */
7 
8 #include "otsdaq-core/ConfigurationDataFormats/RegisterConfiguration.h"
9 
10 using namespace ots;
11 
12 RegisterConfiguration::RegisterConfiguration(std::string staticConfigurationName):
13  ConfigurationBase(staticConfigurationName)
14 {
18  //<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
19  //<ROOT xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ConfigurationInfo.xsd">
20  // <CONFIGURATION Name="***RegisterConfiguration">
21  // <VIEW Name="DATA" Type="File,Database,DatabaseTest">
22  // <COLUMN Name="ComponentType" StorageName="DETECTOR_TYPE" DataType="VARCHAR2" />
23  // <COLUMN Name="RegisterName" StorageName="REGISTER_NAME" DataType="VARCHAR2" />
24  // <COLUMN Name="RegisterBaseAddress" StorageName="REGISTER_BASE_ADDRESS" DataType="NUMBER" />
25  // <COLUMN Name="RegisterSize" StorageName="REGISTER_SIZE" DataType="NUMBER" />
26  // <COLUMN Name="RegisterAccess" StorageName="REGISTER_ACCESS" DataType="VARCHAR2" />
27  // </VIEW>
28  // </CONFIGURATION>
29  //</ROOT>
30 
31 
32 
33 }
34 
35 RegisterConfiguration::~RegisterConfiguration() {
36  // TODO Auto-generated destructor stub
37 }
38 
39 void RegisterConfiguration::init() {}