/*
* Novel dendritic action potentials shape the computational 
* 	properties of human layer 2/3 cortical neurons( Gidon et al., 2019)
*
* Modified for (Korenek et al., 2024)
*
* Original version of this code written by 
* Athanasia Papoutsi and Albert Gidon
*/

load_file("xor.hoc")

objref vbox
objref null

vbox = new VBox()
vbox.intercept(1)

xpanel("XOR")

  xbutton("uncoupled/Setting 1: pathway X + pathway Y","uncoupled(\"XY\")")
  xbutton("coupled/Setting 2: pathway X + pathway Y","coupled(\"XY\")")
  

xpanel()
vbox.intercept(0)	//ends intercept mode
vbox.map()		//draw the box and its contents