/** * Author: * John Idarraga * * allpix Authors: * John Idarraga * Mathieu Benoit */ #include "AllPixLETCalculatorDigit.hh" G4Allocator AllPixLETCalculatorDigitAllocator; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... AllPixLETCalculatorDigit::AllPixLETCalculatorDigit() { pixelIDX = -1; pixelIDY = -1; pixelCounts = 0; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... AllPixLETCalculatorDigit::~AllPixLETCalculatorDigit() {;} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... AllPixLETCalculatorDigit::AllPixLETCalculatorDigit(const AllPixLETCalculatorDigit& right) : AllPixDigitInterface() { pixelIDX = right.pixelIDX; pixelIDY = right.pixelIDY; pixelCounts = right.pixelCounts; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... const AllPixLETCalculatorDigit& AllPixLETCalculatorDigit::operator=(const AllPixLETCalculatorDigit& right) { pixelIDX = right.pixelIDX; pixelIDY = right.pixelIDY; pixelCounts = right.pixelCounts; return *this; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... int AllPixLETCalculatorDigit::operator==(const AllPixLETCalculatorDigit& right) const { return ((pixelIDX==right.pixelIDX)&& (pixelIDY==right.pixelIDY)&& (pixelCounts==right.pixelCounts)); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void AllPixLETCalculatorDigit::Draw() {;} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void AllPixLETCalculatorDigit::Print() {;} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....