00001 #ifndef SAMPLE_HANDLER__DISK_OUTPUT_XRD_H
00002 #define SAMPLE_HANDLER__DISK_OUTPUT_XRD_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #include <SampleHandler/Global.h>
00016
00017 #include <SampleHandler/DiskOutput.h>
00018
00019 namespace SH
00020 {
00025 class DiskOutputXRD : public DiskOutput
00026 {
00027
00028
00029
00030
00034 public:
00035 void testInvariant () const;
00036
00037
00045 public:
00046 DiskOutputXRD ();
00047
00048
00055 public:
00056 DiskOutputXRD (const std::string& val_prefix);
00057
00058
00059
00060
00061
00062
00063
00065 protected:
00066 virtual DiskWriter *
00067 doMakeWriter (const std::string& sample, const std::string& name,
00068 int index, const std::string& suffix) const;
00069
00070
00071
00072
00073
00074
00075
00077 private:
00078 std::string m_prefix;
00079
00080 ClassDef (DiskOutputXRD, 1);
00081 };
00082 }
00083
00084 #endif