BOSS 8.0.0
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 <fstream>
5#include <iostream>
6#include <map>
7#include <stdlib.h>
8#include <string>
9using namespace std;
10
11class parityC {
12
13public:
14 static void readParityC();
15 static double getC( string parname );
16
17 virtual ~parityC() {}
18
19private:
20 static std::map<string, double> _parityCMap_;
21};
22
23#endif
static void readParityC()
Definition EvtParityC.cc:5
static double getC(string parname)
Definition EvtParityC.cc:30
virtual ~parityC()
Definition EvtParityC.hh:17