1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// COCOA class implementation file
//Id: HistoDef.cc
//CAT: AnalysisMgr
//
// History: v1.0
// Pedro Arce
#include "Alignment/CocoaFit/interface/HistoDef.h"
#include <cmath>
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@2
void HistoDef::init(ALIstring name) {
theName = name;
theMin = ALI_DBL_MAX;
theMax = -ALI_DBL_MAX;
}
|