summaryrefslogtreecommitdiff
path: root/cad/plugins/HDF5_SimResults/include/Nanorex/SimResultsDataStore.h
blob: a0e0be676c141a46672d3cfca6b9a537096eb6cf (plain)
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

// Copyright 2006-2007 Nanorex, Inc.  See LICENSE file for details. 

#ifndef NE1_SIMRESULTSDATASTORE_H
#define NE1_SIMRESULTSDATASTORE_H

#ifdef WIN32
#     ifdef _MSC_VER
#             pragma warning(disable:4786)
#     endif
#endif

#include <string>
#include <vector>

#define SRDS_UNABLE_TO_OPEN_FILE			1
#define SRDS_UNABLE_TO_COMPLETE_OPERATION	2
#define SRDS_NON_EXISTENT_FRAMESET			3
#define SRDS_EMPTY_FRAMESET					4
#define SRDS_INVALID_FRAMEINDEX				5
#define SRDS_NON_EXISTENT_DATASET			6

namespace Nanorex {


/* STRUCT: SimResultsBond */
/**
 * A chemical bond. See SimResultsDataStore for context.
 */
typedef struct SimResultsBond {
	unsigned int atomId_1, atomId_2;
	float order;
} SimResultsBond;


/* CLASS: SimResultsDataStore */
/**
 * Encapsulates a simulation results data store.
 *
 * <b>Atom Records Alignment</b>
 * The arrays of atom identifiers, positions, and velocities within a given
 * frame are aligned. So the contents at index X of all three arrays correspond
 * to the same atom.
 *
 * <b>Extension Data</b>
 * Extension data can be stored in each frame. Such data could be used to plot
 * graphs, for example. Extension data exists as named floating point numbers,
 * integers, floating point number arrays, and integer arrays inside a named
 * data-set.	
 */
class SimResultsDataStore {
  public:
	virtual ~SimResultsDataStore();

	/* METHOD: openDataStore */
	/**
	 * Opens the simulation results data store, found in the given directory,
	 * for read/write access.
	 *
	 * @param directory the directory where the simulation results files are
	 * @param message description of the error when a non-zero value is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int openDataStore(const char* directory, std::string& message) = 0;

	
	/* METHOD: synchronize */
	/**
	 * Forces the datastore to be re-read from disk. Use to get the latest data
	 * written to the datastore.
	 */
	virtual void synchronize() = 0;
	
	
	/*
	 * Name
	 */
	/** Retrieves the simulation name.
	 *
	 * @return 0=successful or non-zero if no value was found.
	 */
	virtual int getName(std::string& name) const = 0;
	
	/** Sets the simulation name.
	 *
	 * @param message description of the error when a non-zero value is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setName(const std::string& name, std::string& message) = 0;
	
	
	/*
	 * Description
	 */
	/** Retrieves the simulation description.
	 *
	 * @return 0=successful or non-zero if no value was found.
	 */
	virtual int getDescription(std::string& description) const = 0;
	
	/** Sets the simulation description.
	 *
	 * @param message description of the error when a non-zero value is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setDescription(const std::string& description,
							   std::string& message) = 0;

	/*
	 * Notes
	 */
	/** Retrieves the user's notes for these simulation results.
	 *
	 * @return 0=successful or non-zero if no value was found.
	 */
	virtual int getNotes(std::string& notes) const = 0;
	
	/** Sets the user's notes for these simulation results.
	 *
	 * @param message description of the error when a non-zero value is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setNotes(const std::string& notes, std::string& message) = 0;
	
	
	/*
	 * Parameters
	 */
	virtual std::vector<std::string> getIntParameterKeys() const = 0;
	virtual int getIntParameter(const std::string& key, int& value) const = 0;
	virtual int setIntParameter(const std::string& key, int value,
								std::string& message) = 0;
	virtual std::vector<std::string> getFloatParameterKeys() const = 0;
	virtual int getFloatParameter(const std::string& key, float& value)
		const = 0;
	virtual int setFloatParameter(const std::string& key, float value,
								  std::string& message) = 0;
	virtual std::vector<std::string> getStringParameterKeys() const = 0;
	virtual int getStringParameter(const std::string& key, std::string& value)
		const = 0;
	virtual int setStringParameter(const std::string& key,
								   const std::string& value,
								   std::string& message) = 0;
	/*
	 * FilePath
	 */
	/**
	 * Returns a vector of file path keys. These file paths are for simulation
	 * specification files, simulation workflow scripts, template files, etc.
	 *
	 */
	virtual std::vector<std::string> getFilePathKeys() const = 0;

	/** Retrieves the file path associated with the given key.
	 *
	 * @return 0=successful or non-zero if no value was found.
	 */
	virtual int getFilePath(const char* key, std::string& filePath) const = 0;

	/** Associates the given file path with the given key.
	 *
	 * @param message description of the error when a non-zero value is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setFilePath(const char* key, const char* filePath,
							std::string& message) = 0;


	/*
	 * RunResult
	 */
	/**
	 * Retrieves the simulation run's result and failure message if the
	 * simulation failed.
	 *
	 * @param result	0=success, 1=still running, 2=failure, 3=aborted
	 * @param failureDescription	description of the failure/abortion if
	 *								result=2/3
	 * @return			0=successful or non-zero if no value was found.
	 */
	virtual int getRunResult(int& result,
							 std::string& failureDescription) const = 0;

	/** Sets the simulation run's result and failure message.
	 * 
	 * @param code		0=success, 1=still running, 2=failure, 3=aborted
	 * @param failureDescription	description of the failure/abortion if
	 *								result=2/3
	 * @param message	description of the error when a non-zero value is returned
	 * @return			0=successful or non-zero error code
	 */
	virtual int setRunResult(const int& code, const char* failureDescription,
							 std::string& message) = 0;

	
	/*
	 * StartTime
	 */
	/** Retrieves the simulation start time.
	 *
	 * @return 0=successful or non-zero if no value was found.
	 */
	virtual int getStartTime(time_t& startTime) const = 0;

	/** Sets the simulation start time.
	 *
	 * @param message description of the error when a non-zero value is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setStartTime(const time_t& startTime, std::string& message) = 0;
	
	
	/*
	 * CPU_RunningTime
	 */
	/** Retrieves the simulation CPU running time in seconds.
	 *
	 * @return 0=successful or non-zero if no value was found.
	 */
	virtual int getCPU_RunningTime(float& cpuRunningTime) const = 0;
	
	/** Sets the simulation CPU running time.
	 *
	 * @param message description of the error when a non-zero value is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setCPU_RunningTime(const float& cpuRunningTime,
								   std::string& message) = 0;
	
	/*
	 * WallRunningTime
	 */
	/** Retrieves the simulation wall running time in seconds.
	 *
	 * @return 0=successful or non-zero if no value was found.
	 */
	virtual int getWallRunningTime(float& wallRunningTime) const = 0;
	
	/** Sets the simulation CPU running time.
	 *
	 * @param message description of the error when a non-zero value is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setWallRunningTime(const float& wallRunningTime,
								   std::string& message) = 0;
	
	/*
	 * Results
	 */
	virtual std::vector<std::string> getIntResultKeys() const = 0;
	virtual int getIntResult(const std::string& key, int& value) const = 0;
	virtual int setIntResult(const std::string& key, int value,
							 std::string& message) = 0;
	virtual std::vector<std::string> getFloatResultKeys() const = 0;
	virtual int getFloatResult(const std::string& key, float& value)
		const = 0;
	virtual int setFloatResult(const std::string& key, float value,
								  std::string& message) = 0;
	virtual std::vector<std::string> getStringResultKeys() const = 0;
	virtual int getStringResult(const std::string& key, std::string& value)
		const = 0;
	virtual int setStringResult(const std::string& key,
								const std::string& value,
								std::string& message) = 0;
	/*
	def getExtDataNames(self):
		"""Returns an array of extension data-set names."""
		pass
	def getExtDataKeys(self, extDataSetName):
		"""
		Returns an array of extension data-set keys for a given extension
		data-set.
		"""
		pass
	def getExtDataFloat(self, extDataSetName, key):
		"""
		Returns a floating point value stored in the extension data-set with the
		given key.
		"""
		pass
	def getExtDataInt(self, extDataSetName, key):
		"""
		Returns an integer value stored in the extension data-set with the
		given key.
		"""
		pass
	def getExtDataFloatArray(self, extDataSetName, key):
		"""
		Returns an array of floating point values stored in the extension
		data-set with the given key.
		"""
		pass
	def getExtDataIntArray(self, extDataSetName, key):
		"""
		Returns an array of integers stored in the extension data-set with the
		given key.
		"""
		pass
	def setExtDataFloat(self, extDataSetName, key, value):
		"""
		Sets a floating point value stored in the extension data-set with the
		given key.
		"""
		pass
	def setExtDataInt(self, extDataSetName, key, value):
		"""
		Sets an integer value stored in the extension data-set with the
		given key.
		"""
		pass
	def setExtDataFloatArray(self, extDataSetName, key, floatArray):
		"""
		Sets an array of floating point values stored in the extension data-set
		with the given key.
		"""
		pass
	def setExtDataIntArray(self, extDataSetName, key, intArray):
		"""
		Sets an array of integers stored in the extension data-set
		with the given key.
		"""
		pass
	*/

	
	/*
	 * FrameSet
	 */
	/**
	 * Returns a vector of frame-set names. These frame-set names are used to
	 * get/set frame data.
	 */
	virtual std::vector<std::string> getFrameSetNames() const = 0;
	
	/**
	 * Adds a frame-set with the given name. If a frame-set with the given name
	 * already exists, the call fails.
	 *
	 * @param message description of the error when a non-zero value is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int addFrameSet(const char* name, std::string& message) = 0;

	/**
	 * Removes the frame-set with the given name.
	 *
	def removeFrameSet(self, name):
	 */
	

	/*
	 * AggregationMode
	 */
	/** Retrieves the aggregation mode of the frame-set with the given name.
	 *
	 * @param mode [IN]	0=per-time-step values are averaged (default),
	 *					1=last per-time-step value is used
	 * @return 0=successful or non-zero if no value was found.
	 */
	virtual int getAggregationMode(const char* frameSetName,
								   int& mode) const = 0;
	/**
	 * Sets the aggregation mode of the frame-set with the given name. If a
	 * frame-set with the given name doesn't exist, the call fails.
	 *
	 * @param message description of the error when a non-zero value is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setAggregationMode(const char* frameSetName, const int& mode,
								   std::string& message) = 0;
	
	
	/*
	 * StepsPerFrame
	 */
	/**
	 * Retrieves the steps-per-frame for the frame-set with the given name.
	 *
	 * @return 0=successful or non-zero if no value was found.
	 */
	virtual int getStepsPerFrame(const char* frameSetName,
								 int& stepsPerFrame) const = 0;
	/**
	 * Sets the steps-per-frame for the frame-set with the given name. If a
	 * frame-set with the given name doesn't exist, the call fails.
	 *
	 * @param message description of the error when a non-zero value is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setStepsPerFrame(const char* frameSetName,
								 const int& stepsPerFrame,
								 std::string& message) = 0;

	/*
	 * Frame
	 */
	/**
	 * Retrieves the number of frames in a frame-set.
	 *
	 * @param frameCount	[OUT] the number of frames in the specified
	 *						frame-set. This is a signed integer so that users
	 *						can encode information in its negative value realm.
	 */
	virtual void getFrameCount(const char* frameSetName,
							   int& frameCount) = 0;
	
	/** Retrieves a malloc'd array of frame times (in seconds) for a frame-set.
	 *
	 * @param frameSetName	[IN] the name of the frame-set to retieve frame
	 *						times from
	 * @param frameTimes	[OUT] a malloc'd float array with sufficient
	 *						space to store the frame-set times
	 * @param message		[OUT] description of the error when a non-zero value
	 *						is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int getFrameTimes(const char* frameSetName, float* frameTimes,
							  std::string& message) = 0;

	/** Retrieves the frame time for a specific frame
	 *
	 * @param frameSetName	[IN] the name of the frame-set to retieve frame
	 *						times from
	 * @param frameIndex	[IN] the index of the frame to retrieve the time
	 *						from
	 * @param time			[OUT] the frame's timestamp in seconds
	 * @param message		[OUT] description of the error when a non-zero value
	 *						is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int getFrameTime(const char* frameSetName, const int& frameIndex,
							 float& time, std::string& message) = 0;
	
	/** Adds a frame to the specified frame-set.
	 *
	 * @param time			[IN] the frame's time in seconds
	 * @param frameIndex	[OUT] the frame index of the newly added frame
	 * @param message		[OUT] description of the error when a non-zero value
	 *						is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int addFrame(const char* frameSetName, const float& time,
						 int& frameIndex, std::string& message) = 0;

	/*
	def removeFrame(self, frameSetName, frameIndex):
		"""Removes a frame from the specified frame-set."""
		pass
	 */
	
	
	/*
	 * AtomIds
	 */
	/** Retrieves the number of atom ids for the frame-set. */
	virtual void getFrameAtomIdsCount(const char* frameSetName,
									  unsigned int& atomIdsCount) = 0;
	
	/** Retrieves an array of atom identifiers for the frame-set. */
	virtual int getFrameAtomIds(const char* frameSetName,
								unsigned int* atomIds,
								std::string& message) = 0;

	/** Sets the array of atom identifiers for the specified frame-set.
	 *
	 * @param message		[OUT] description of the error when a non-zero value
	 *						is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setFrameAtomIds(const char* frameSetName,
								const unsigned int* atomIds,
								const unsigned int& atomIdsCount,
								std::string& message) = 0;
	/*
	 * AtomicNumbers
	 */
	/** Retrieves an array of atomic numbers for the frame-set. */
	virtual int getFrameAtomicNumbers(const char* frameSetName,
									  unsigned int* atomicNumbers,
									  std::string& message) = 0;
	
	/** Sets the array of atomic numbers for the specified frame-set.
	 *
	 * @param message		[OUT] description of the error when a non-zero value
	 *						is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setFrameAtomicNumbers(const char* frameSetName,
									  const unsigned int* atomicNumbers,
									  const unsigned int& atomicNumbersCount,
									  std::string& message) = 0;
	
	/*
	 * AtomPositions
	 */
	/**
	 * Retrieves an array of Cartesian atom positions for a specified frame.
	 *
	 * @param frameSetName	[IN] the name of the frame-set to set atom positions
	 *						for
	 * @param frameIndex	[IN] the index of the frame to set atom positions
	 *						for
	 * @param atomCount		[IN] the number of atoms
	 * @param positions		[OUT] an array of length: 3 x (number of atoms)
	 *						will contain atom positions in meters, layed out
	 *						like atom0.x, atom0.y, atom0.z, atom1.x, atom1.y,
	 *						atom1.z, etc.
	 * @param message		[OUT] description of the error when a non-zero value
	 *						is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int getFrameAtomPositions(const char* frameSetName,
									  const int& frameIndex,
									  const unsigned int& atomCount,
									  float* positions,
									  std::string& message) = 0;
	
	/** Sets the array of Cartesian atom positions for a specified frame.
	 *
	 * @param frameSetName	[IN] the name of the frame-set to set atom positions
	 *						for
	 * @param frameIndex	[IN] the index of the frame to set atom positions
	 *						for
	 * @param positions		[IN] an array of length: 3 x (number of atoms)
	 *						containing atom positions in meters, layed out like
	 *						atom0.x, atom0.y, atom0.z, atom1.x, atom1.y,
	 *						atom1.z, etc.
	 * @param atomCount		[IN] the number of atoms
	 * @param message		[OUT] description of the error when a non-zero value
	 *						is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setFrameAtomPositions(const char* frameSetName,
									  const int& frameIndex,
									  const float* positions,
									  const unsigned int& atomCount,
									  std::string& message) = 0;
	/*
	 * AtomVelocities
	 */
	/**
	 * Retrieves an array of atom velocities for a specified frame.
	 *
	 * @param frameSetName	[IN] the name of the frame-set to set atom
	 *						velocities for
	 * @param frameIndex	[IN] the index of the frame to set atom velocities
	 *						for
	 * @param atomCount		[IN] the number of atoms
	 * @param velocities	[OUT] an array of length: 3 x (number of atoms)
	 *						will contain atom velocities in meters/second, layed
	 *						out like atom0.x, atom0.y, atom0.z, atom1.x,
	 *						atom1.y, atom1.z, etc.
	 * @param message		[OUT] description of the error when a non-zero value
	 *						is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int getFrameAtomVelocities(const char* frameSetName,
									   const int& frameIndex,
									   const unsigned int& atomCount,
									   float* velocities,
									   std::string& message) = 0;
	
	/** Sets the array of atom velocities for a specified frame.
	 *
	 * @param frameSetName	[IN] the name of the frame-set to set atom
	 *						velocities for
	 * @param frameIndex	[IN] the index of the frame to set atom velocities
	 *						for
	 * @param velocities	[IN] an array of length: 3 x (number of atoms)
	 *						containing atom velocities in meters/second, layed
	 *						out like atom0.x, atom0.y, atom0.z, atom1.x,
	 *						atom1.y, atom1.z, etc.
	 * @param atomCount		[IN] the number of atoms
	 * @param message		[OUT] description of the error when a non-zero value
	 *						is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setFrameAtomVelocities(const char* frameSetName,
									   const int& frameIndex,
									   const float* velocities,
									   const unsigned int& atomCount,
									   std::string& message) = 0;
	/*
	 * Bonds
	 */
	/**
	 * Retrieves the number of bonds for a specified frame.
	 *
	 * @param frameSetName	[IN] the name of the frame-set from which to
	 *						retrieve bonds
	 * @param frameIndex	[IN] the index of the frame from which to retrieve
	 *						bonds
	 * @param bondCount		[OUT] the number of bonds
	 */
	 virtual void getFrameBondsCount(const char* frameSetName,
									const int& frameIndex,
									unsigned int& bondCount) = 0;
	/**
	 * Retrieves an array of SimResultsBond structs for a specified frame.
	 *
	 * @param frameSetName	[IN] the name of the frame-set from which to
	 *						retrieve bonds
	 * @param frameIndex	[IN] the index of the frame from which to retrieve
	 *						bonds
	 * @param bonds			[OUT] a pointer to an array of SimResultsBond
	 *						structs (don't forget to free() it when done with
	 *						it)
	 * @param message		[OUT] description of the error when a non-zero value
	 *						is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int getFrameBonds(const char* frameSetName,
							  const int& frameIndex,
							  void* bonds,
							  std::string& message) = 0;
	
	/** Sets the array of SimResultsBond structs for a specified frame.
	 *
	 * @param frameSetName	[IN] the name of the frame-set in which to set bonds
	 * @param frameIndex	[IN] the index of the frame in which to set bonds
	 * @param bonds			[IN] a pointer to an array of SimResultsBond structs
	 * @param message		[OUT] description of the error when a non-zero value
	 *						is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setFrameBonds(const char* frameSetName,
							  const int& frameIndex,
							  const void* bonds,
							  const unsigned int& bondCount,
							  std::string& message) = 0;
	/*
	 * TotalEnergy
	 */
	/**
	 * Retrieves the total energy for the specified frame in Joules.
	 *
	 * @param frameSetName	[IN] the name of the frame-set of interest
	 * @param frameIndex	[IN] the index of the frame of interest
	 * @param totalEnergy	[OUT] total energy in Joules
	 * @param message		[OUT] description of the error when a non-zero value
	 *						is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int getFrameTotalEnergy(const char* frameSetName,
									const int& frameIndex,
									float& totalEnergy,
									std::string& message) = 0;
	/**
	 * Sets the total energy for the specified frame.
	 *
	 * @param frameSetName	[IN] the name of the frame-set of interest
	 * @param frameIndex	[IN] the index of the frame of interest
	 * @param totalEnergy	[IN] total energy in Joules
	 * @param message		[OUT] description of the error when a non-zero value
	 *						is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setFrameTotalEnergy(const char* frameSetName,
									const int& frameIndex,
									const float& totalEnergy,
									std::string& message) = 0;
	/*
	 * IdealTemperature
	 */
	/**
	 * Retrieves the ideal temperature for the specified frame in Kelvin.
	 *
	 * @param frameSetName		[IN] the name of the frame-set of interest
	 * @param frameIndex		[IN] the index of the frame of interest
	 * @param idealTemperature	[OUT] ideal temperature in Kelvin
	 * @param message			[OUT] description of the error when a non-zero
	 *							value is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int getFrameIdealTemperature(const char* frameSetName,
										 const int& frameIndex,
										 float& idealTemperature,
										 std::string& message) = 0;
	/**
	 * Sets the ideal temperature for the specified frame.
	 *
	 * @param frameSetName		[IN] the name of the frame-set of interest
	 * @param frameIndex		[IN] the index of the frame of interest
	 * @param idealTemperature	[IN] ideal temperature in Kelvin
	 * @param message			[OUT] description of the error when a non-zero
	 *							value is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setFrameIdealTemperature(const char* frameSetName,
										 const int& frameIndex,
										 const float& idealTemperature,
										 std::string& message) = 0;
	/*
	 * Pressure
	 */
	/**
	 * Retrieves the pressure for the specified frame in Pascals.
	 *
	 * @param frameSetName	[IN] the name of the frame-set of interest
	 * @param frameIndex	[IN] the index of the frame of interest
	 * @param pressure		[OUT] pressure in Pascals
	 * @param message		[OUT] description of the error when a non-zero value
	 *						is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int getFramePressure(const char* frameSetName,
								 const int& frameIndex,
								 float& pressure,
								 std::string& message) = 0;
	/**
	 * Sets the pressure for the specified frame.
	 *
	 * @param frameSetName	[IN] the name of the frame-set of interest
	 * @param frameIndex	[IN] the index of the frame of interest
	 * @param pressure		[OUT] pressure in Pascals
	 * @param message		[OUT] description of the error when a non-zero value
	 *						is returned
	 * @return 0=successful or non-zero error code
	 */
	virtual int setFramePressure(const char* frameSetName,
								 const int& frameIndex,
								 const float& pressure,
								 std::string& message) = 0;
	
	
	/*
	def getFrameExtDataNames(self, frameSetName):
		"""Returns an array of extension data-set names for a given frame-set."""
		pass
	def getFrameExtDataKeys(self, frameSetName, extDataSetName):
		"""
		Returns an array of extension data-set keys for a given extension
		data-set.
		"""
		pass
	def getFrameExtDataFloat(self, frameSetName, frameIndex, extDataSetName,
							 key):
		"""
		Returns a floating point value stored in the specified frame for the
		given key.
		"""
		pass
	def getFrameExtDataInt(self, frameSetName, frameIndex, extDataSetName, key):
		"""
		Returns an integer value stored in the specified frame for the given
		key.
		"""
		pass
	def getFrameExtDataFloatArray(self, frameSetName, frameIndex,
								  extDataSetName, key):
		"""
		Returns an array of floating point values stored in the specified frame
		for the given key.
		"""
		pass
	def getFrameExtDataIntArray(self, frameSetName, frameIndex, extDataSetName,
								key):
		"""
		Returns an array of integers stored in the specified frame for the given
		key.
		"""
		pass
	def setFrameExtDataFloat(self, frameSetName, frameIndex, extDataSetName,
							 key, value):
		"""
		Sets a floating point value stored in the specified frame for the given
		key.
		"""
		pass
	def setFrameExtDataInt(self, frameSetName, frameIndex, extDataSetName, key,
						   value):
		"""
		Sets an integer value stored in the specified frame for the given
		key.
		"""
		pass
	def setFrameExtDataFloatArray(self, frameSetName, frameIndex,
								  extDataSetName, key, floatArray):
		"""
		Sets an array of floating point values stored in the specified
		frame for the given key.
		"""
		pass
	def setFrameExtDataIntArray(self, frameSetName, frameIndex, extDataSetName,
								key, intArray):
		"""
		Sets an array of integers stored in the specified frame for the given
		key.
		"""
		pass
 */
};

} // Nanorex::

#endif