forked from aduc812/xTDC4-tango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXTDC4Class.cpp
1672 lines (1504 loc) · 58.6 KB
/
XTDC4Class.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*----- PROTECTED REGION ID(XTDC4Class.cpp) ENABLED START -----*/
static const char *RcsId = "$Id: $";
static const char *TagName = "$Name: $";
static const char *CvsPath = "$Source: $";
static const char *SvnPath = "$HeadURL: $";
static const char *HttpServer = "http://www.esrf.eu/computing/cs/tango/tango_doc/ds_doc/";
//=============================================================================
//
// file : XTDC4Class.cpp
//
// description : C++ source for the XTDC4Class.
// A singleton class derived from DeviceClass.
// It implements the command and attribute list
// and all properties and methods required
// by the XTDC4 once per process.
//
// project : xTDC4_DevServer
//
// This file is part of Tango device class.
//
// Tango is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Tango is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Tango. If not, see <http://www.gnu.org/licenses/>.
//
// $Author: $
//
// $Revision: $
// $Date: $
//
// $HeadURL: $
//
//=============================================================================
// This file is generated by POGO
// (Program Obviously used to Generate tango Object)
//=============================================================================
#include <XTDC4Class.h>
/*----- PROTECTED REGION END -----*/ // XTDC4Class.cpp
//-------------------------------------------------------------------
/**
* Create XTDC4Class singleton and
* return it in a C function for Python usage
*/
//-------------------------------------------------------------------
extern "C" {
#ifdef _TG_WINDOWS_
__declspec(dllexport)
#endif
Tango::DeviceClass *_create_XTDC4_class(const char *name) {
return XTDC4_ns::XTDC4Class::init(name);
}
}
namespace XTDC4_ns
{
//===================================================================
// Initialize pointer for singleton pattern
//===================================================================
XTDC4Class *XTDC4Class::_instance = NULL;
//--------------------------------------------------------
/**
* method : XTDC4Class::XTDC4Class(string &s)
* description : constructor for the XTDC4Class
*
* @param s The class name
*/
//--------------------------------------------------------
XTDC4Class::XTDC4Class(string &s):Tango::DeviceClass(s)
{
cout2 << "Entering XTDC4Class constructor" << endl;
set_default_property();
write_class_property();
/*----- PROTECTED REGION ID(XTDC4Class::constructor) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // XTDC4Class::constructor
cout2 << "Leaving XTDC4Class constructor" << endl;
}
//--------------------------------------------------------
/**
* method : XTDC4Class::~XTDC4Class()
* description : destructor for the XTDC4Class
*/
//--------------------------------------------------------
XTDC4Class::~XTDC4Class()
{
/*----- PROTECTED REGION ID(XTDC4Class::destructor) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // XTDC4Class::destructor
_instance = NULL;
}
//--------------------------------------------------------
/**
* method : XTDC4Class::init
* description : Create the object if not already done.
* Otherwise, just return a pointer to the object
*
* @param name The class name
*/
//--------------------------------------------------------
XTDC4Class *XTDC4Class::init(const char *name)
{
if (_instance == NULL)
{
try
{
string s(name);
_instance = new XTDC4Class(s);
}
catch (bad_alloc &)
{
throw;
}
}
return _instance;
}
//--------------------------------------------------------
/**
* method : XTDC4Class::instance
* description : Check if object already created,
* and return a pointer to the object
*/
//--------------------------------------------------------
XTDC4Class *XTDC4Class::instance()
{
if (_instance == NULL)
{
cerr << "Class is not initialised !!" << endl;
exit(-1);
}
return _instance;
}
//===================================================================
// Command execution method calls
//===================================================================
//--------------------------------------------------------
/**
* method : StartClass::execute()
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------
CORBA::Any *StartClass::execute(Tango::DeviceImpl *device, TANGO_UNUSED(const CORBA::Any &in_any))
{
cout2 << "StartClass::execute(): arrived" << endl;
((static_cast<XTDC4 *>(device))->start());
return new CORBA::Any();
}
//--------------------------------------------------------
/**
* method : StopClass::execute()
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------
CORBA::Any *StopClass::execute(Tango::DeviceImpl *device, TANGO_UNUSED(const CORBA::Any &in_any))
{
cout2 << "StopClass::execute(): arrived" << endl;
((static_cast<XTDC4 *>(device))->stop());
return new CORBA::Any();
}
//--------------------------------------------------------
/**
* method : OffClass::execute()
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------
CORBA::Any *OffClass::execute(Tango::DeviceImpl *device, TANGO_UNUSED(const CORBA::Any &in_any))
{
cout2 << "OffClass::execute(): arrived" << endl;
((static_cast<XTDC4 *>(device))->off());
return new CORBA::Any();
}
//--------------------------------------------------------
/**
* method : apply_configClass::execute()
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------
CORBA::Any *apply_configClass::execute(Tango::DeviceImpl *device, TANGO_UNUSED(const CORBA::Any &in_any))
{
cout2 << "apply_configClass::execute(): arrived" << endl;
((static_cast<XTDC4 *>(device))->apply_config());
return new CORBA::Any();
}
//--------------------------------------------------------
/**
* method : ClearClass::execute()
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------
CORBA::Any *ClearClass::execute(Tango::DeviceImpl *device, TANGO_UNUSED(const CORBA::Any &in_any))
{
cout2 << "ClearClass::execute(): arrived" << endl;
((static_cast<XTDC4 *>(device))->clear());
return new CORBA::Any();
}
//===================================================================
// Properties management
//===================================================================
//--------------------------------------------------------
/**
* Method : XTDC4Class::get_class_property()
* Description : Get the class property for specified name.
*/
//--------------------------------------------------------
Tango::DbDatum XTDC4Class::get_class_property(string &prop_name)
{
for (unsigned int i=0 ; i<cl_prop.size() ; i++)
if (cl_prop[i].name == prop_name)
return cl_prop[i];
// if not found, returns an empty DbDatum
return Tango::DbDatum(prop_name);
}
//--------------------------------------------------------
/**
* Method : XTDC4Class::get_default_device_property()
* Description : Return the default value for device property.
*/
//--------------------------------------------------------
Tango::DbDatum XTDC4Class::get_default_device_property(string &prop_name)
{
for (unsigned int i=0 ; i<dev_def_prop.size() ; i++)
if (dev_def_prop[i].name == prop_name)
return dev_def_prop[i];
// if not found, return an empty DbDatum
return Tango::DbDatum(prop_name);
}
//--------------------------------------------------------
/**
* Method : XTDC4Class::get_default_class_property()
* Description : Return the default value for class property.
*/
//--------------------------------------------------------
Tango::DbDatum XTDC4Class::get_default_class_property(string &prop_name)
{
for (unsigned int i=0 ; i<cl_def_prop.size() ; i++)
if (cl_def_prop[i].name == prop_name)
return cl_def_prop[i];
// if not found, return an empty DbDatum
return Tango::DbDatum(prop_name);
}
//--------------------------------------------------------
/**
* Method : XTDC4Class::set_default_property()
* Description : Set default property (class and device) for wizard.
* For each property, add to wizard property name and description.
* If default value has been set, add it to wizard property and
* store it in a DbDatum.
*/
//--------------------------------------------------------
void XTDC4Class::set_default_property()
{
string prop_name;
string prop_desc;
string prop_def;
vector<string> vect_data;
// Set Default Class Properties
// Set Default device Properties
prop_name = "buffer_size";
prop_desc = "Amount of local memory used for DMA data buffer";
prop_def = "16777216";
vect_data.clear();
vect_data.push_back("16777216");
if (prop_def.length()>0)
{
Tango::DbDatum data(prop_name);
data << vect_data ;
dev_def_prop.push_back(data);
add_wiz_dev_prop(prop_name, prop_desc, prop_def);
}
else
add_wiz_dev_prop(prop_name, prop_desc);
prop_name = "board_id";
prop_desc = "the global index in all cronologic devices.\nThis 8 bit number is filled into each packet created by the board and is useful if data streams\nof multiple boards will be merged. If only XTDC4 cards are used this number can be set to the\ncard index. If boards of different types that use a compatible data format are used in a system\neach board should get a unique id. Can be changed at runtime.";
prop_def = "0";
vect_data.clear();
vect_data.push_back("0");
if (prop_def.length()>0)
{
Tango::DbDatum data(prop_name);
data << vect_data ;
dev_def_prop.push_back(data);
add_wiz_dev_prop(prop_name, prop_desc, prop_def);
}
else
add_wiz_dev_prop(prop_name, prop_desc);
prop_name = "card_index";
prop_desc = "The index in the list of XTDC4 boards that should be initialized.\nThere might be multiple boards in the system that are handled by this driver as reported by\nxtdc4_count_devices. This index selects one of them. Boards are enumerated depending on the\nPCIe slot. The lower the bus number and the lower the slot number the lower the card index.";
prop_def = "0";
vect_data.clear();
vect_data.push_back("0");
if (prop_def.length()>0)
{
Tango::DbDatum data(prop_name);
data << vect_data ;
dev_def_prop.push_back(data);
add_wiz_dev_prop(prop_name, prop_desc, prop_def);
}
else
add_wiz_dev_prop(prop_name, prop_desc);
prop_name = "use_ext_clock";
prop_desc = "If set to 1 use external 10 MHz reference. If set to 0 use internal reference.";
prop_def = "0";
vect_data.clear();
vect_data.push_back("0");
if (prop_def.length()>0)
{
Tango::DbDatum data(prop_name);
data << vect_data ;
dev_def_prop.push_back(data);
add_wiz_dev_prop(prop_name, prop_desc, prop_def);
}
else
add_wiz_dev_prop(prop_name, prop_desc);
prop_name = "push_events";
prop_desc = "If False, the CHx_Timestamps attributes have to be read periodically to fetch timestamps.\nIf True, the CHANGE events are generated on CHx_Timestamps attributes that push all timestamps. Reading these attributes return empty vectors.";
prop_def = "True";
vect_data.clear();
vect_data.push_back("True");
if (prop_def.length()>0)
{
Tango::DbDatum data(prop_name);
data << vect_data ;
dev_def_prop.push_back(data);
add_wiz_dev_prop(prop_name, prop_desc, prop_def);
}
else
add_wiz_dev_prop(prop_name, prop_desc);
}
//--------------------------------------------------------
/**
* Method : XTDC4Class::write_class_property()
* Description : Set class description fields as property in database
*/
//--------------------------------------------------------
void XTDC4Class::write_class_property()
{
// First time, check if database used
if (Tango::Util::_UseDb == false)
return;
Tango::DbData data;
string classname = get_name();
string header;
string::size_type start, end;
// Put title
Tango::DbDatum title("ProjectTitle");
string str_title("xTDC4_DevServer");
title << str_title;
data.push_back(title);
// Put Description
Tango::DbDatum description("Description");
vector<string> str_desc;
str_desc.push_back("https://www.cronologic.de/time_measurement/tdc/xtdc4/");
description << str_desc;
data.push_back(description);
// put cvs or svn location
string filename("XTDC4");
filename += "Class.cpp";
// check for cvs information
string src_path(CvsPath);
start = src_path.find("/");
if (start!=string::npos)
{
end = src_path.find(filename);
if (end>start)
{
string strloc = src_path.substr(start, end-start);
// Check if specific repository
start = strloc.find("/cvsroot/");
if (start!=string::npos && start>0)
{
string repository = strloc.substr(0, start);
if (repository.find("/segfs/")!=string::npos)
strloc = "ESRF:" + strloc.substr(start, strloc.length()-start);
}
Tango::DbDatum cvs_loc("cvs_location");
cvs_loc << strloc;
data.push_back(cvs_loc);
}
}
// check for svn information
else
{
string src_path(SvnPath);
start = src_path.find("://");
if (start!=string::npos)
{
end = src_path.find(filename);
if (end>start)
{
header = "$HeadURL: ";
start = header.length();
string strloc = src_path.substr(start, (end-start));
Tango::DbDatum svn_loc("svn_location");
svn_loc << strloc;
data.push_back(svn_loc);
}
}
}
// Get CVS or SVN revision tag
// CVS tag
string tagname(TagName);
header = "$Name: ";
start = header.length();
string endstr(" $");
end = tagname.find(endstr);
if (end!=string::npos && end>start)
{
string strtag = tagname.substr(start, end-start);
Tango::DbDatum cvs_tag("cvs_tag");
cvs_tag << strtag;
data.push_back(cvs_tag);
}
// SVN tag
string svnpath(SvnPath);
header = "$HeadURL: ";
start = header.length();
end = svnpath.find(endstr);
if (end!=string::npos && end>start)
{
string strloc = svnpath.substr(start, end-start);
string tagstr ("/tags/");
start = strloc.find(tagstr);
if ( start!=string::npos )
{
start = start + tagstr.length();
end = strloc.find(filename);
string strtag = strloc.substr(start, end-start-1);
Tango::DbDatum svn_tag("svn_tag");
svn_tag << strtag;
data.push_back(svn_tag);
}
}
// Get URL location
string httpServ(HttpServer);
if (httpServ.length()>0)
{
Tango::DbDatum db_doc_url("doc_url");
db_doc_url << httpServ;
data.push_back(db_doc_url);
}
// Put inheritance
Tango::DbDatum inher_datum("InheritedFrom");
vector<string> inheritance;
inheritance.push_back("TANGO_BASE_CLASS");
inher_datum << inheritance;
data.push_back(inher_datum);
// Call database and and values
get_db_class()->put_property(data);
}
//===================================================================
// Factory methods
//===================================================================
//--------------------------------------------------------
/**
* Method : XTDC4Class::device_factory()
* Description : Create the device object(s)
* and store them in the device list
*/
//--------------------------------------------------------
void XTDC4Class::device_factory(const Tango::DevVarStringArray *devlist_ptr)
{
/*----- PROTECTED REGION ID(XTDC4Class::device_factory_before) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // XTDC4Class::device_factory_before
// Create devices and add it into the device list
for (unsigned long i=0 ; i<devlist_ptr->length() ; i++)
{
cout4 << "Device name : " << (*devlist_ptr)[i].in() << endl;
device_list.push_back(new XTDC4(this, (*devlist_ptr)[i]));
}
// Manage dynamic attributes if any
erase_dynamic_attributes(devlist_ptr, get_class_attr()->get_attr_list());
// Export devices to the outside world
for (unsigned long i=1 ; i<=devlist_ptr->length() ; i++)
{
// Add dynamic attributes if any
XTDC4 *dev = static_cast<XTDC4 *>(device_list[device_list.size()-i]);
dev->add_dynamic_attributes();
// Check before if database used.
if ((Tango::Util::_UseDb == true) && (Tango::Util::_FileDb == false))
export_device(dev);
else
export_device(dev, dev->get_name().c_str());
}
/*----- PROTECTED REGION ID(XTDC4Class::device_factory_after) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // XTDC4Class::device_factory_after
}
//--------------------------------------------------------
/**
* Method : XTDC4Class::attribute_factory()
* Description : Create the attribute object(s)
* and store them in the attribute list
*/
//--------------------------------------------------------
void XTDC4Class::attribute_factory(vector<Tango::Attr *> &att_list)
{
/*----- PROTECTED REGION ID(XTDC4Class::attribute_factory_before) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // XTDC4Class::attribute_factory_before
// Attribute : error_code
error_codeAttrib *error_code = new error_codeAttrib();
Tango::UserDefaultAttrProp error_code_prop;
// description not set for error_code
// label not set for error_code
// unit not set for error_code
// standard_unit not set for error_code
// display_unit not set for error_code
// format not set for error_code
// max_value not set for error_code
// min_value not set for error_code
// max_alarm not set for error_code
// min_alarm not set for error_code
// max_warning not set for error_code
// min_warning not set for error_code
// delta_t not set for error_code
// delta_val not set for error_code
error_code->set_default_properties(error_code_prop);
// Not Polled
error_code->set_disp_level(Tango::OPERATOR);
// Not Memorized
att_list.push_back(error_code);
// Attribute : error_message
error_messageAttrib *error_message = new error_messageAttrib();
Tango::UserDefaultAttrProp error_message_prop;
// description not set for error_message
// label not set for error_message
// unit not set for error_message
// standard_unit not set for error_message
// display_unit not set for error_message
// format not set for error_message
// max_value not set for error_message
// min_value not set for error_message
// max_alarm not set for error_message
// min_alarm not set for error_message
// max_warning not set for error_message
// min_warning not set for error_message
// delta_t not set for error_message
// delta_val not set for error_message
error_message->set_default_properties(error_message_prop);
// Not Polled
error_message->set_disp_level(Tango::OPERATOR);
// Not Memorized
att_list.push_back(error_message);
// Attribute : device_type
device_typeAttrib *device_type = new device_typeAttrib();
Tango::UserDefaultAttrProp device_type_prop;
device_type_prop.set_description("For xTDC4, the device type is 6");
// label not set for device_type
// unit not set for device_type
// standard_unit not set for device_type
// display_unit not set for device_type
// format not set for device_type
// max_value not set for device_type
// min_value not set for device_type
// max_alarm not set for device_type
// min_alarm not set for device_type
// max_warning not set for device_type
// min_warning not set for device_type
// delta_t not set for device_type
// delta_val not set for device_type
device_type->set_default_properties(device_type_prop);
// Not Polled
device_type->set_disp_level(Tango::OPERATOR);
// Not Memorized
att_list.push_back(device_type);
// Attribute : START_RISING
START_RISINGAttrib *start_rising = new START_RISINGAttrib();
Tango::UserDefaultAttrProp start_rising_prop;
start_rising_prop.set_description("Trigger START on rising of falling edge");
// label not set for START_RISING
// unit not set for START_RISING
// standard_unit not set for START_RISING
// display_unit not set for START_RISING
// format not set for START_RISING
// max_value not set for START_RISING
// min_value not set for START_RISING
// max_alarm not set for START_RISING
// min_alarm not set for START_RISING
// max_warning not set for START_RISING
// min_warning not set for START_RISING
// delta_t not set for START_RISING
// delta_val not set for START_RISING
start_rising->set_default_properties(start_rising_prop);
// Not Polled
start_rising->set_disp_level(Tango::OPERATOR);
start_rising->set_memorized();
start_rising->set_memorized_init(true);
att_list.push_back(start_rising);
// Attribute : START_DC_OFFSET
START_DC_OFFSETAttrib *start_dc_offset = new START_DC_OFFSETAttrib();
Tango::UserDefaultAttrProp start_dc_offset_prop;
start_dc_offset_prop.set_description("DC threshold of START input");
// label not set for START_DC_OFFSET
start_dc_offset_prop.set_unit("V");
// standard_unit not set for START_DC_OFFSET
// display_unit not set for START_DC_OFFSET
// format not set for START_DC_OFFSET
start_dc_offset_prop.set_max_value("1.18");
start_dc_offset_prop.set_min_value("-1.32");
// max_alarm not set for START_DC_OFFSET
// min_alarm not set for START_DC_OFFSET
// max_warning not set for START_DC_OFFSET
// min_warning not set for START_DC_OFFSET
// delta_t not set for START_DC_OFFSET
// delta_val not set for START_DC_OFFSET
start_dc_offset->set_default_properties(start_dc_offset_prop);
// Not Polled
start_dc_offset->set_disp_level(Tango::OPERATOR);
start_dc_offset->set_memorized();
start_dc_offset->set_memorized_init(true);
att_list.push_back(start_dc_offset);
// Attribute : CH0_ENABLED
CH0_ENABLEDAttrib *ch0_enabled = new CH0_ENABLEDAttrib();
Tango::UserDefaultAttrProp ch0_enabled_prop;
ch0_enabled_prop.set_description("Enable input");
// label not set for CH0_ENABLED
// unit not set for CH0_ENABLED
// standard_unit not set for CH0_ENABLED
// display_unit not set for CH0_ENABLED
// format not set for CH0_ENABLED
// max_value not set for CH0_ENABLED
// min_value not set for CH0_ENABLED
// max_alarm not set for CH0_ENABLED
// min_alarm not set for CH0_ENABLED
// max_warning not set for CH0_ENABLED
// min_warning not set for CH0_ENABLED
// delta_t not set for CH0_ENABLED
// delta_val not set for CH0_ENABLED
ch0_enabled->set_default_properties(ch0_enabled_prop);
// Not Polled
ch0_enabled->set_disp_level(Tango::OPERATOR);
ch0_enabled->set_memorized();
ch0_enabled->set_memorized_init(true);
att_list.push_back(ch0_enabled);
// Attribute : CH0_RISING
CH0_RISINGAttrib *ch0_rising = new CH0_RISINGAttrib();
Tango::UserDefaultAttrProp ch0_rising_prop;
ch0_rising_prop.set_description("Trigger input on rising of falling edge");
// label not set for CH0_RISING
// unit not set for CH0_RISING
// standard_unit not set for CH0_RISING
// display_unit not set for CH0_RISING
// format not set for CH0_RISING
// max_value not set for CH0_RISING
// min_value not set for CH0_RISING
// max_alarm not set for CH0_RISING
// min_alarm not set for CH0_RISING
// max_warning not set for CH0_RISING
// min_warning not set for CH0_RISING
// delta_t not set for CH0_RISING
// delta_val not set for CH0_RISING
ch0_rising->set_default_properties(ch0_rising_prop);
// Not Polled
ch0_rising->set_disp_level(Tango::OPERATOR);
ch0_rising->set_memorized();
ch0_rising->set_memorized_init(true);
att_list.push_back(ch0_rising);
// Attribute : CH0_DC_OFFSET
CH0_DC_OFFSETAttrib *ch0_dc_offset = new CH0_DC_OFFSETAttrib();
Tango::UserDefaultAttrProp ch0_dc_offset_prop;
ch0_dc_offset_prop.set_description("DC threshold of input");
// label not set for CH0_DC_OFFSET
ch0_dc_offset_prop.set_unit("V");
// standard_unit not set for CH0_DC_OFFSET
// display_unit not set for CH0_DC_OFFSET
// format not set for CH0_DC_OFFSET
ch0_dc_offset_prop.set_max_value("1.18");
ch0_dc_offset_prop.set_min_value("-1.32");
// max_alarm not set for CH0_DC_OFFSET
// min_alarm not set for CH0_DC_OFFSET
// max_warning not set for CH0_DC_OFFSET
// min_warning not set for CH0_DC_OFFSET
// delta_t not set for CH0_DC_OFFSET
// delta_val not set for CH0_DC_OFFSET
ch0_dc_offset->set_default_properties(ch0_dc_offset_prop);
// Not Polled
ch0_dc_offset->set_disp_level(Tango::OPERATOR);
ch0_dc_offset->set_memorized();
ch0_dc_offset->set_memorized_init(true);
att_list.push_back(ch0_dc_offset);
// Attribute : CH1_ENABLED
CH1_ENABLEDAttrib *ch1_enabled = new CH1_ENABLEDAttrib();
Tango::UserDefaultAttrProp ch1_enabled_prop;
ch1_enabled_prop.set_description("Enable input");
// label not set for CH1_ENABLED
// unit not set for CH1_ENABLED
// standard_unit not set for CH1_ENABLED
// display_unit not set for CH1_ENABLED
// format not set for CH1_ENABLED
// max_value not set for CH1_ENABLED
// min_value not set for CH1_ENABLED
// max_alarm not set for CH1_ENABLED
// min_alarm not set for CH1_ENABLED
// max_warning not set for CH1_ENABLED
// min_warning not set for CH1_ENABLED
// delta_t not set for CH1_ENABLED
// delta_val not set for CH1_ENABLED
ch1_enabled->set_default_properties(ch1_enabled_prop);
// Not Polled
ch1_enabled->set_disp_level(Tango::OPERATOR);
ch1_enabled->set_memorized();
ch1_enabled->set_memorized_init(true);
att_list.push_back(ch1_enabled);
// Attribute : CH1_RISING
CH1_RISINGAttrib *ch1_rising = new CH1_RISINGAttrib();
Tango::UserDefaultAttrProp ch1_rising_prop;
ch1_rising_prop.set_description("Trigger input on rising of falling edge");
// label not set for CH1_RISING
// unit not set for CH1_RISING
// standard_unit not set for CH1_RISING
// display_unit not set for CH1_RISING
// format not set for CH1_RISING
// max_value not set for CH1_RISING
// min_value not set for CH1_RISING
// max_alarm not set for CH1_RISING
// min_alarm not set for CH1_RISING
// max_warning not set for CH1_RISING
// min_warning not set for CH1_RISING
// delta_t not set for CH1_RISING
// delta_val not set for CH1_RISING
ch1_rising->set_default_properties(ch1_rising_prop);
// Not Polled
ch1_rising->set_disp_level(Tango::OPERATOR);
ch1_rising->set_memorized();
ch1_rising->set_memorized_init(true);
att_list.push_back(ch1_rising);
// Attribute : CH1_DC_OFFSET
CH1_DC_OFFSETAttrib *ch1_dc_offset = new CH1_DC_OFFSETAttrib();
Tango::UserDefaultAttrProp ch1_dc_offset_prop;
ch1_dc_offset_prop.set_description("DC threshold of input");
// label not set for CH1_DC_OFFSET
ch1_dc_offset_prop.set_unit("V");
// standard_unit not set for CH1_DC_OFFSET
// display_unit not set for CH1_DC_OFFSET
// format not set for CH1_DC_OFFSET
ch1_dc_offset_prop.set_max_value("1.18");
ch1_dc_offset_prop.set_min_value("-1.32");
// max_alarm not set for CH1_DC_OFFSET
// min_alarm not set for CH1_DC_OFFSET
// max_warning not set for CH1_DC_OFFSET
// min_warning not set for CH1_DC_OFFSET
// delta_t not set for CH1_DC_OFFSET
// delta_val not set for CH1_DC_OFFSET
ch1_dc_offset->set_default_properties(ch1_dc_offset_prop);
// Not Polled
ch1_dc_offset->set_disp_level(Tango::OPERATOR);
ch1_dc_offset->set_memorized();
ch1_dc_offset->set_memorized_init(true);
att_list.push_back(ch1_dc_offset);
// Attribute : CH2_ENABLED
CH2_ENABLEDAttrib *ch2_enabled = new CH2_ENABLEDAttrib();
Tango::UserDefaultAttrProp ch2_enabled_prop;
ch2_enabled_prop.set_description("Enable input");
// label not set for CH2_ENABLED
// unit not set for CH2_ENABLED
// standard_unit not set for CH2_ENABLED
// display_unit not set for CH2_ENABLED
// format not set for CH2_ENABLED
// max_value not set for CH2_ENABLED
// min_value not set for CH2_ENABLED
// max_alarm not set for CH2_ENABLED
// min_alarm not set for CH2_ENABLED
// max_warning not set for CH2_ENABLED
// min_warning not set for CH2_ENABLED
// delta_t not set for CH2_ENABLED
// delta_val not set for CH2_ENABLED
ch2_enabled->set_default_properties(ch2_enabled_prop);
// Not Polled
ch2_enabled->set_disp_level(Tango::OPERATOR);
ch2_enabled->set_memorized();
ch2_enabled->set_memorized_init(true);
att_list.push_back(ch2_enabled);
// Attribute : CH2_RISING
CH2_RISINGAttrib *ch2_rising = new CH2_RISINGAttrib();
Tango::UserDefaultAttrProp ch2_rising_prop;
ch2_rising_prop.set_description("Trigger input on rising of falling edge");
// label not set for CH2_RISING
// unit not set for CH2_RISING
// standard_unit not set for CH2_RISING
// display_unit not set for CH2_RISING
// format not set for CH2_RISING
// max_value not set for CH2_RISING
// min_value not set for CH2_RISING
// max_alarm not set for CH2_RISING
// min_alarm not set for CH2_RISING
// max_warning not set for CH2_RISING
// min_warning not set for CH2_RISING
// delta_t not set for CH2_RISING
// delta_val not set for CH2_RISING
ch2_rising->set_default_properties(ch2_rising_prop);
// Not Polled
ch2_rising->set_disp_level(Tango::OPERATOR);
ch2_rising->set_memorized();
ch2_rising->set_memorized_init(true);
att_list.push_back(ch2_rising);
// Attribute : CH2_DC_OFFSET
CH2_DC_OFFSETAttrib *ch2_dc_offset = new CH2_DC_OFFSETAttrib();
Tango::UserDefaultAttrProp ch2_dc_offset_prop;
ch2_dc_offset_prop.set_description("DC threshold of input");
// label not set for CH2_DC_OFFSET
ch2_dc_offset_prop.set_unit("V");
// standard_unit not set for CH2_DC_OFFSET
// display_unit not set for CH2_DC_OFFSET
// format not set for CH2_DC_OFFSET
ch2_dc_offset_prop.set_max_value("1.18");
ch2_dc_offset_prop.set_min_value("-1.32");
// max_alarm not set for CH2_DC_OFFSET
// min_alarm not set for CH2_DC_OFFSET
// max_warning not set for CH2_DC_OFFSET
// min_warning not set for CH2_DC_OFFSET
// delta_t not set for CH2_DC_OFFSET
// delta_val not set for CH2_DC_OFFSET
ch2_dc_offset->set_default_properties(ch2_dc_offset_prop);
// Not Polled
ch2_dc_offset->set_disp_level(Tango::OPERATOR);
ch2_dc_offset->set_memorized();
ch2_dc_offset->set_memorized_init(true);
att_list.push_back(ch2_dc_offset);
// Attribute : CH3_ENABLED
CH3_ENABLEDAttrib *ch3_enabled = new CH3_ENABLEDAttrib();
Tango::UserDefaultAttrProp ch3_enabled_prop;
ch3_enabled_prop.set_description("Enable input");
// label not set for CH3_ENABLED
// unit not set for CH3_ENABLED
// standard_unit not set for CH3_ENABLED
// display_unit not set for CH3_ENABLED
// format not set for CH3_ENABLED
// max_value not set for CH3_ENABLED
// min_value not set for CH3_ENABLED
// max_alarm not set for CH3_ENABLED
// min_alarm not set for CH3_ENABLED
// max_warning not set for CH3_ENABLED
// min_warning not set for CH3_ENABLED
// delta_t not set for CH3_ENABLED
// delta_val not set for CH3_ENABLED
ch3_enabled->set_default_properties(ch3_enabled_prop);
// Not Polled
ch3_enabled->set_disp_level(Tango::OPERATOR);
ch3_enabled->set_memorized();
ch3_enabled->set_memorized_init(true);
att_list.push_back(ch3_enabled);
// Attribute : CH3_RISING
CH3_RISINGAttrib *ch3_rising = new CH3_RISINGAttrib();
Tango::UserDefaultAttrProp ch3_rising_prop;
ch3_rising_prop.set_description("Trigger input on rising of falling edge");
// label not set for CH3_RISING
// unit not set for CH3_RISING
// standard_unit not set for CH3_RISING
// display_unit not set for CH3_RISING
// format not set for CH3_RISING
// max_value not set for CH3_RISING
// min_value not set for CH3_RISING
// max_alarm not set for CH3_RISING
// min_alarm not set for CH3_RISING
// max_warning not set for CH3_RISING
// min_warning not set for CH3_RISING
// delta_t not set for CH3_RISING
// delta_val not set for CH3_RISING
ch3_rising->set_default_properties(ch3_rising_prop);
// Not Polled
ch3_rising->set_disp_level(Tango::OPERATOR);
ch3_rising->set_memorized();
ch3_rising->set_memorized_init(true);
att_list.push_back(ch3_rising);
// Attribute : CH3_DC_OFFSET
CH3_DC_OFFSETAttrib *ch3_dc_offset = new CH3_DC_OFFSETAttrib();
Tango::UserDefaultAttrProp ch3_dc_offset_prop;
ch3_dc_offset_prop.set_description("DC threshold of input");
// label not set for CH3_DC_OFFSET
ch3_dc_offset_prop.set_unit("V");
// standard_unit not set for CH3_DC_OFFSET
// display_unit not set for CH3_DC_OFFSET
// format not set for CH3_DC_OFFSET
ch3_dc_offset_prop.set_max_value("1.18");