File indexing completed on 2024-09-07 04:34:25
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef _ENTRYNoDim_HH
0011 #define _ENTRYNoDim_HH
0012
0013 #include "Alignment/CocoaModel/interface/Entry.h"
0014
0015 class EntryNoDim : public Entry {
0016 public:
0017
0018 EntryNoDim(const ALIstring type) : Entry(type) {
0019 theDimType = ED_nodim;
0020
0021 };
0022 ~EntryNoDim() override {}
0023
0024
0025
0026 ALIdouble ValueDimensionFactor() const override { return 1.0; }
0027 ALIdouble SigmaDimensionFactor() const override { return 1.0; }
0028
0029 ALIdouble startingDisplacement() override { return 0.1; }
0030 };
0031
0032 #endif