AculCalibSi.cpp 593 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
/*
 * AculCalibSi.cpp
 *
 *  Created on: Oct 26, 2016
 *      Author: vratik
 */

#include "AculCalibSi.h"
#include "AculCalParsSi.h"

ClassImp(AculCalibSi);

AculCalibSi::AculCalibSi() {
	printf("AculCalibScint::Default constructor called.\n");
//	fInFiles = 0;
//	fTrees = 0;
//	fCutFile = 0;
}

AculCalibSi::AculCalibSi(const char* parfile) {
	printf("AculCalibScint::Constructor called.\n");

	SetParFile(parfile);
	Init();
}

AculCalibSi::~AculCalibSi() {

	printf("AculCalibScint::Destructor called.\n");

}

void AculCalibSi::Init() {
	fPars = new AculCalParsSi(fParFileName.Data());
}