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