NCFS-Pack
A generic (astro)particle physics analysis framework
 
Loading...
Searching...
No Matches
NcDetector.cxx
Go to the documentation of this file.
1
31
33
193
194#include "NcDetector.h"
195#include "Riostream.h"
196
197ClassImp(NcDetector); // Class implementation to enable ROOT I/O
198
200NcDetector::NcDetector(const char* name,const char* title) : NcDetectorUnit(name,title)
201{
207}
208
217
226
227TObject* NcDetector::Clone(const char* name) const
228{
238
239 NcDetector* q=new NcDetector(*this);
240 if (name)
241 {
242 if (strlen(name)) q->SetName(name);
243 }
244 return q;
245}
246
ClassImp(NcDetector)
Creation and investigation of an NCFS generic detector structure.
Definition NcDetector.h:12
NcDetector(const char *name="", const char *title="")
virtual TObject * Clone(const char *name="") const
virtual ~NcDetector()
NcDetectorUnit(const char *name="", const char *title="")