~indra-vamos/kaliveda/kaliveda_e503

« back to all changes in this revision

Viewing changes to FAZIA/detectors/KVCurrentSignal.h

  • Committer: Peter Wigg
  • Date: 2015-07-01 12:51:53 UTC
  • Revision ID: peter.wigg.314159@gmail.com-20150701125153-3qr211dcu3fc0y5t
Merge with kaliveda-dev (FAZIA directory only).

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
#define __KVCURRENTSIGNAL_H
6
6
 
7
7
#include "KVSignal.h"
 
8
#include "KVPSAResult.h"
8
9
 
9
10
class KVCurrentSignal : public KVSignal
10
11
{
11
12
 
12
13
   public:
13
14
   KVCurrentSignal();
14
 
   KVCurrentSignal(const char* name, const char* title);
15
 
   KVCurrentSignal(const TString& name, const TString& title);
 
15
   KVCurrentSignal(const char* name);
 
16
   
16
17
   virtual ~KVCurrentSignal();
17
18
   void Copy(TObject& obj) const;
18
19
 
 
20
   virtual void SetDefaultValues();
 
21
 
 
22
   virtual KVPSAResult* TreateSignal();
 
23
 
19
24
   ClassDef(KVCurrentSignal,1)//digitized intensity signal
20
25
};
21
26