CGEM BOSS 6.6.5.h
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtParityC.hh
Go to the documentation of this file.
1#ifndef PWAPARITYC_HH
2#define PWAPARITYC_HH
3
4#include <stdlib.h>
5#include <string>
6#include <iostream>
7#include <fstream>
8#include <map>
9using namespace std;
10
11class parityC{
12
13public:
14 static void readParityC();
15 static double getC(string parname);
16
17
18 virtual ~parityC(){}
19private:
20 static std::map<string, double> _parityCMap_;
21
22};
23
24
25#endif
static void readParityC()
Definition EvtParityC.cc:6
static double getC(string parname)
Definition EvtParityC.cc:26
virtual ~parityC()
Definition EvtParityC.hh:18