OptOUserDefined

Macros

Line Code
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
//   COCOA class header file
//Id:  OptOUserDefined.h
//CAT: Model
//
//   Base class to describe Optical Objects of type sensor 2D
//
//   History: v1.0
//   Pedro Arce

#ifndef _OPTOUSERDEFINED_HH
#define _OPTOUSERDEFINED_HH

#include "Alignment/CocoaUtilities/interface/CocoaGlobals.h"
#include "Alignment/CocoaModel/interface/OpticalObject.h"
class Measurement;
class LightRay;

class OptOUserDefined : public OpticalObject {
public:
  //---------- Constructors / Destructor
  OptOUserDefined() {}
  OptOUserDefined(OpticalObject* parent, const ALIstring& type, const ALIstring& name, const ALIbool copy_data)
      : OpticalObject(parent, type, name, copy_data) {}
  ~OptOUserDefined() override {}

#ifdef COCOA_VIS
  virtual void fillVRML() override;
  virtual void fillIguana() override;
#endif
  //---------- userDefinedBehaviour
  void userDefinedBehaviour(LightRay& lightray, Measurement& meas, const ALIstring& behav) override;
};

#endif