Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:01

0001 //   COCOA class header file

0002 //Id:  OptOSource.h

0003 //CAT: Model

0004 //

0005 //   Base class to describe Optical Objects of type sensor 2D

0006 //

0007 //   History: v1.0

0008 //   Pedro Arce

0009 
0010 #ifndef _OPTOSOURCE_HH
0011 #define _OPTOSOURCE_HH
0012 
0013 #include "Alignment/CocoaUtilities/interface/CocoaGlobals.h"
0014 #include "Alignment/CocoaModel/interface/OpticalObject.h"
0015 class Measurement;
0016 class LightRay;
0017 
0018 class OptOSource : public OpticalObject {
0019 public:
0020   //---------- Constructors / Destructor

0021   OptOSource();
0022   OptOSource(OpticalObject* parent, const ALIstring& type, const ALIstring& name, const ALIbool copy_data)
0023       : OpticalObject(parent, type, name, copy_data){};
0024   ~OptOSource() override{};
0025 
0026 #ifdef COCOA_VIS
0027   virtual void fillVRML();
0028   virtual void fillIguana();
0029 #endif
0030 
0031   //---------- Propagate light for measurement meas

0032   void defaultBehaviour(LightRay& lightray, Measurement& meas) override;
0033   void constructSolidShape() override;
0034 };
0035 
0036 #endif