KaliVeda
Toolkit for HIC analysis
KVDBAlphaPeak.h
1 /***************************************************************************
2 $Id: KVDBAlphaPeak.h,v 1.4 2006/10/19 14:32:43 franklan Exp $
3  KVDBAlphaPeak.h - description
4  -------------------
5  begin : december 5th 2003
6  copyright : (C) 2003 by John D. Frankland
7  email : frankland@ganil.fr
8  ***************************************************************************/
9 
10 /***************************************************************************
11  * *
12  * This program is free software; you can redistribute it and/or modify *
13  * it under the terms of the GNU General Public License as published by *
14  * the Free Software Foundation; either version 2 of the License, or *
15  * (at your option) any later version. *
16  * *
17  ***************************************************************************/
18 #ifndef __KVDBALPHA_H
19 #define __KVDBALPHA_H
20 
21 #include "KVDBPeak.h"
22 
23 #define PEAK_THORON_1 6.062
24 #define PEAK_THORON_2 8.785
25 
35 class KVDBAlphaPeak: public KVDBPeak {
36 
37 public:
38 
39  KVDBAlphaPeak();
40  KVDBAlphaPeak(const Char_t* detname);
41  virtual ~ KVDBAlphaPeak()
42  {
43  };
44 
45  ClassDef(KVDBAlphaPeak, 1) //alpha peaks for calibration
46 };
47 
48 #endif
char Char_t
#define ClassDef(name, id)
Wrapper for KVDBPeak describing alpha (thoron) peaks for calibration.
Definition: KVDBAlphaPeak.h:35
virtual ~ KVDBAlphaPeak()
Definition: KVDBAlphaPeak.h:41
KVDBAlphaPeak()
default ctor
Calibration peak in database.
Definition: KVDBPeak.h:35