00001 #include "OpeResult.h"
00002 #include "RawScanResult.h"
00003 #include "Sct/SctParameters.h"
00004
00005 #include <TH1.h>
00006 #include <iostream>
00007
00008 using namespace std;
00009
00010 namespace SctData {
00011 OpeResult::OpeResult(Sct::UniqueID id) :
00012 chipResult("OpeResult::chipResult"), m_uniqueID(id)
00013 {
00014 chipResult.resize(Sct::nChipModule);
00015 }
00016
00017 OpeResult::OpeResult() :
00018 chipResult("OpeResult::chipResult"), m_uniqueID(0,0,""){
00019 chipResult.resize(Sct::nChipModule);
00020 }
00021
00022 OpeResult::~OpeResult() {
00023 }
00024
00025 string OpeResult::getClassName() const {
00026 return "SctData::OpeResult";
00027 }
00028
00029 Sct::UniqueID OpeResult::getUniqueID() const{
00030 return m_uniqueID;
00031 }
00032
00033 ChipOpeResult& ChipOpeResult::operator=(const ChipOpeResult& copyme){
00034 badmax=copyme.badmax;
00035 threshold=copyme.threshold;
00036 hist=copyme.hist;
00037 return *this;
00038 }
00039
00040 }
00041