one_strip_raw.cxx 739 Bytes
Newer Older
Kostyleva D.A's avatar
Kostyleva D.A committed
1
{
2
	gSystem->Load("/home/dariak/AculUtils/libAculData.so");
Kostyleva D.A's avatar
Kostyleva D.A committed
3 4

	AculCalibration cal;
Kostyleva D.A's avatar
Kostyleva D.A committed
5
	cal.SetInputParameters(); //from .par
6
	cal.CalculateCalibParameters("clb09_0001.root", "SQ22", "AnalysisxTree", 100, 4095);
Kostyleva D.A's avatar
Kostyleva D.A committed
7

Kostyleva D.A's avatar
Kostyleva D.A committed
8 9
//	    CalculateCalibParameters(const char* inputfile, const char* block, const Int_t address, const char* treename, Int_t lowerchannel = 0, Int_t upperchannel = 4095, Int_t nEBins = 1000, Int_t lowersubaddress = 0, Int_t uppersubaddress = ADDRESSNUMBER-1);

10
	TFile fr("SQ22[].root");
Kostyleva D.A's avatar
Kostyleva D.A committed
11 12 13 14 15 16 17 18
	cout << fr.GetListOfKeys()->GetEntries() << " histograms" << endl;
	TList *histList = fr.GetListOfKeys();
	TH1 *hWork = 0;
	for (Int_t i = 0; i < 32; i++) 
	{
		fr.GetObject(histList->At(i)->GetName(), hWork);		
		cal->PeaksFitting(hWork);
	}
Kostyleva D.A's avatar
Kostyleva D.A committed
19
}