/* ======================================================================== *\ ! ! * ! * This file is part of MARS, the MAGIC Analysis and Reconstruction ! * Software. It is distributed to you in the hope that it can be a useful ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes. ! * It is distributed WITHOUT ANY WARRANTY. ! * ! * Permission to use, copy, modify and distribute this software and its ! * documentation for any purpose is hereby granted without fee, ! * provided that the above copyright notice appear in all copies and ! * that both that copyright notice and this permission notice appear ! * in supporting documentation. It is provided "as is" without express ! * or implied warranty. ! * ! ! ! Author(s): Thomas Bretz 07/2002 ! ! Copyright: MAGIC Software Development, 2000-2002 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // MagicCivilization // --------- // // Tool to visualize Next Neighbours. // // Start the show by: // MagicCivilization show; // // Use the following keys: // ----------------------- // // * Space: // Toggle between auto increment and manual increment // // * Right/Left: // Increment/Decrement pixel number by 1 // // * Right/Left: // Increment/Decrement pixel number by 1 // // * Up/Down: // Increment/Decrement pixel number by 10 // // * PageUp/PageDown: // Increment/Decrement pixel number by 100 // // * Home/End: // Jump to first/last pixel // //////////////////////////////////////////////////////////////////////////// #include "MagicCivilization.h" #include #include #include #include #include #include "MHexagon.h" #include "MGeomPix.h" #include "MGeomCamCT1.h" #include "MGeomCamMagic.h" ClassImp(MagicCivilization); using namespace std; void MagicCivilization::Free() { if (!fGeomCam) return; fPixels->Delete(); delete fPixels; delete fGeomCam; } // ------------------------------------------------------------------------ // // Draw all pixels of the camera // (means apend all pixelobjects to the current pad) // void MagicCivilization::DrawHexagons() { for (UInt_t i=0; iGetNumPixels(); fRange = fGeomCam->GetMaxRadius(); // // Construct all hexagons. Use new-operator with placement // fPixels = new TClonesArray("MHexagon", fNumPixels); for (UInt_t i=0; i ROOT_VERSION(3,01,06) h.SetBit(kNoContextMenu|kCannotPick); #endif } } // ------------------------------------------------------------------------ // // default constructor // MagicCivilization::MagicCivilization(Byte_t lim, UShort_t init) : fTimer(this, 500, kTRUE), fGeomCam(NULL), fNumInit(init), fLimit(lim), fW(0), fH(0) { SetNewCamera(new MGeomCamMagic); // // Make sure, that the object is destroyed when the canvas/pad is // destroyed. Make also sure, that the interpreter doesn't try to // delete it a second time. // SetBit(kCanDelete); gInterpreter->DeleteGlobal(this); Draw(); fTimer.TurnOn(); } // ------------------------------------------------------------------------ // // Destructor. Deletes TClonesArrays for hexagons and legend elements. // MagicCivilization::~MagicCivilization() { fTimer.TurnOff(); Free(); if (fDrawingPad->GetListOfPrimitives()->FindObject(this)==this) { fDrawingPad->RecursiveRemove(this); delete fDrawingPad; } } // ------------------------------------------------------------------------ // // This is called at any time the canvas should get repainted. // Here we maintain an aspect ratio of 5/4=1.15. This makes sure, // that the camera image doesn't get distorted by resizing the canvas. // void MagicCivilization::Paint(Option_t *opt) { const UInt_t w = (UInt_t)(gPad->GetWw()*gPad->GetAbsWNDC()); const UInt_t h = (UInt_t)(gPad->GetWh()*gPad->GetAbsHNDC()); // // Check for a change in width or height, and make sure, that the // first call also sets the range // if (w*fH == h*fW && fW && fH) return; // // Calculate aspect ratio (5/4=1.25 recommended) // const Double_t ratio = (Double_t)w/h; Float_t x; Float_t y; if (ratio>1.0) { x = fRange*(ratio*2-1); y = fRange; } else { x = fRange; y = fRange/ratio; } fH = h; fW = w; // // Set new range // fDrawingPad->Range(-fRange, -y, x, y); } void MagicCivilization::Reset() { if (fNumInit>=fNumPixels) fNumInit = fNumPixels-1; if (fNumInit<0) fNumInit = 0; if (fLimit<0) fLimit=6; if (fLimit>6) fLimit=0; TRandom rnd(0); for (int i=0; i=fNumPixels) cout << "!!!!!!!!!!!!!!!!!!!!!!!!" << endl; (*fGeomCam)[idx].SetBit(kHasFlag); } fAuto = kFALSE; fStep = 0; Update(); fDrawingPad->Modified(); fDrawingPad->Update(); } // ------------------------------------------------------------------------ // // Call this function to draw the camera layout into your canvas. // Setup a drawing canvas. Add this object and all child objects // (hexagons, etc) to the current pad. If no pad exists a new one is // created. // void MagicCivilization::Draw(Option_t *option) { // // if no canvas is yet existing to draw into, create a new one // /*TCanvas *c =*/ new TCanvas("MagicCivilization", "Magic Civilization", 0, 0, 800, 800); //c->ToggleEventStatus(); fDrawingPad = gPad; fDrawingPad->SetBorderMode(0); fDrawingPad->SetFillColor(22); // // Append this object, so that the aspect ratio is maintained // (Paint-function is called) // AppendPad(option); // // Reset the game pad // DrawHexagons(); fCivilization.SetTextAlign(23); // centered/bottom #if ROOT_VERSION_CODE > ROOT_VERSION(3,01,06) fCivilization.SetBit(kNoContextMenu|kCannotPick); #endif fCivilization.Draw(); Reset(); } void MagicCivilization::Update() { TString txt = "Lim: "; txt += (int)fLimit; txt += " Init: "; txt += fNumInit; txt += " On: "; txt += fNumCivilizations; txt += " Step: "; txt += fStep; if (!fAuto) txt += " (paused)"; fCivilization.SetText(0, fRange, txt); } // ------------------------------------------------------------------------ // // Execute a mouse event on the camera // void MagicCivilization::ExecuteEvent(Int_t event, Int_t keycode, Int_t keysym) { if (event!=kKeyPress) return; switch (keysym) { default: return; case kKey_Space: if ((fNumCivilizations==0 || fNumCivilizations==fNumPixels) && !fAuto) Reset(); fAuto = !fAuto; Update(); fDrawingPad->Update(); return; case kKey_Right: fNumInit += 1;; break; case kKey_Left: fNumInit -= 1; break; case kKey_Up: fNumInit += 10; break; case kKey_Down: fNumInit -= 10; break; case kKey_PageUp: fNumInit += 100; break; case kKey_PageDown: fNumInit -= 100; break; case kKey_Plus: fLimit++; break; case kKey_Minus: fLimit--; break; } Reset(); } Bool_t MagicCivilization::HandleTimer(TTimer *timer) { if (!fAuto) return kTRUE; for (int i=0; ifLimit) pix.SetBit(kHasCreation); } fNumCivilizations = 0; for (int i=0; iUpdate(); return kTRUE; }